-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (64 loc) · 1.69 KB
/
main.yml
File metadata and controls
64 lines (64 loc) · 1.69 KB
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
63
64
# WARNING: DO NOT EDIT. AUTO-GENERATED CODE (.github/workflows.src/main.yml)
name: CI
'on':
push:
branches:
- github*
- master
tags:
- v*
pull_request:
branches:
- '**'
schedule:
- cron: 0 0 * * *
jobs:
main:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
node:
- 10
- node
name: main-node-${{ matrix.node }}
runs-on: ubuntu-latest
container:
image: rokmoln/sf-ubuntu-bionic-minimal:0.2.128
options: '--user sf:sf'
env:
GITHUB_JOB_NAME: main-node-${{ matrix.node }}
GITHUB_MATRIX_NODE: ${{ matrix.node }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SF_LOG_BOOTSTRAP: ${{ secrets.SF_LOG_BOOTSTRAP }}
SF_PRINTENV_BOOTSTRAP: ${{ secrets.SF_PRINTENV_BOOTSTRAP }}
V: ${{ secrets.V }}
steps:
- uses: rokmoln/support-firecloud@v0.2.128
with:
run: |
sudo chown sf:sf ${GITHUB_WORKSPACE} # owned by 1001:116 otherwise
bin/github-checkout
- shell: bash
run: ./.ci.sh before_install
- shell: bash
run: ./.ci.sh install
- shell: bash
run: ./.ci.sh before_script
- shell: bash
run: ./.ci.sh script
- if: failure()
shell: bash
run: ./.ci.sh after_failure || true
- shell: bash
run: ./.ci.sh after_success || true
- if: always()
shell: bash
run: ./.ci.sh after_script || true
- if: always()
shell: bash
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: cloud-ci
CI_STATUS: ${{ job.status }}
run: ./.ci.sh notifications || true