-
Notifications
You must be signed in to change notification settings - Fork 377
45 lines (37 loc) · 1007 Bytes
/
continuous-integration.yml
File metadata and controls
45 lines (37 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Continuous Integration
on:
push:
branches:
- master
- '*.x.x'
paths-ignore:
- 'website/**'
jobs:
build-libraries:
uses: ./.github/workflows/build-libraries.yml
plugin-integration:
needs: build-libraries
uses: ./.github/workflows/plugin-it.yml
build-examples:
needs: build-libraries
uses: ./.github/workflows/build-examples.yml
federation-integration:
needs: build-libraries
uses: ./.github/workflows/federation-integration.yml
http-spec-compliance:
needs: build-libraries
uses: ./.github/workflows/http-spec-compliance.yml
graalvm-integration:
needs: build-libraries
uses: ./.github/workflows/graalvm-integration.yml
release-notes:
timeout-minutes: 10
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- name: Release Drafter
uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}