File: ci.yml

package info (click to toggle)
eclipse-platform 4.29-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 70,168 kB
  • sloc: java: 524,463; xml: 64,602; javascript: 4,902; jsp: 4,210; ansic: 870; makefile: 38
file content (21 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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