Skip to content

Commit

Permalink
Reuse eclipse platform workflows for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi authored and ruspl-afed committed Mar 15, 2024
1 parent d3646b7 commit eff638f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/mavenBuild.yml@master

15 changes: 15 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish Unit Test Results

on:
workflow_run:
workflows: ["Continuous Integration"]
types:
- completed

jobs:
check:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/publishTestResults.yml@master




0 comments on commit eff638f

Please sign in to comment.