-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (49 loc) · 1.39 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
name: CI
on:
push:
pull_request:
schedule:
- cron: 0 0 * * *
jobs:
format:
uses: Geode-solutions/actions/.github/workflows/format.yml@master
secrets:
TOKEN: ${{ secrets.TOKEN }}
build-linux:
needs: format
uses: Geode-solutions/actions/.github/workflows/ci-linux.yml@master
with:
repos: OpenGeode
secrets:
TOKEN: ${{ secrets.TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
build-linux-python:
needs: format
uses: Geode-solutions/actions/.github/workflows/ci-linux-python.yml@master
with:
name: OPENGEODE_MYMODULE
repos: OpenGeode
secrets:
TOKEN: ${{ secrets.TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
coverage:
needs: format
uses: Geode-solutions/actions/.github/workflows/coverage.yml@master
with:
repos: OpenGeode
secrets:
TOKEN: ${{ secrets.TOKEN }}
build-windows:
needs: format
uses: Geode-solutions/actions/.github/workflows/ci-windows.yml@master
with:
name: OPENGEODE_MYMODULE
repos: OpenGeode
secrets:
TOKEN: ${{ secrets.TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
semantic-release:
needs: [build-linux, build-linux-python, build-windows]
uses: Geode-solutions/actions/.github/workflows/release.yml@master
secrets:
TOKEN: ${{ secrets.TOKEN }}