-
Notifications
You must be signed in to change notification settings - Fork 27
62 lines (56 loc) · 1.28 KB
/
ci.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: CI
on:
schedule:
- cron: '0 8 */10 * *'
push:
branches:
- master
tags:
- '*'
merge_group:
pull_request:
workflow_dispatch:
jobs:
event_file:
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}
build-jvm:
name: "Build JVM"
uses: "./.github/workflows/build-jvm.yml"
build-snapshots:
name: "Build Snapshots"
uses: "./.github/workflows/build-snapshots.yml"
build-python:
name: "Build Python"
needs: build-jvm
uses: "./.github/workflows/build-python.yml"
test-jvm:
name: "Test JVM"
needs: build-jvm
uses: "./.github/workflows/test-jvm.yml"
test-python:
name: "Test Python"
needs: build-jvm
uses: "./.github/workflows/test-python.yml"
test-snapshots-jvm:
name: "Test Snapshots"
needs: build-snapshots
uses: "./.github/workflows/test-snapshots.yml"
check:
name: "Check"
needs: build-jvm
uses: "./.github/workflows/check.yml"
test_success:
name: "Test success"
runs-on: ubuntu-latest
needs: [build-python, test-jvm, test-python, test-snapshots-jvm]
steps:
- name: Noop
run: true
shell: bash