Skip to content

Commit

Permalink
Adding the unified GH workflow to JDT UI
Browse files Browse the repository at this point in the history
Lets also use the commmon GH action flow like in PDE in JDT. This should
help to discover issues in JDT UI faster and help to identfiy flacky
tests.
  • Loading branch information
vogella committed Dec 1, 2023
1 parent 8a8eef9 commit 97a8bac
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 30 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/checkMergeCommits.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

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

jobs:
check-freeze-period:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/verifyFreezePeriod.yml@master
check-merge-commits:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkMergeCommits.yml@master
build:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/mavenBuild.yml@master

12 changes: 0 additions & 12 deletions .github/workflows/verifyFreezePeriod.yml

This file was deleted.

0 comments on commit 97a8bac

Please sign in to comment.