-
Notifications
You must be signed in to change notification settings - Fork 228
64 lines (62 loc) · 1.96 KB
/
ci_cargo_deny_ubuntu.yaml
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
name: ci_cargo_deny_ubuntu
concurrency:
group: ci_cargo_deny_ubuntu-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types: [ opened, synchronize, reopened ]
push:
branches:
- master
- develop
- 'rc/*'
merge_group: {}
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
RUSTFLAGS: -D warnings
jobs:
prologue:
name: prologue
if: |
github.event_name != 'push' ||
( github.event_name == 'push' &&
( github.ref == 'refs/heads/master' ||
(github.ref == 'refs/heads/develop' && startsWith(github.event.head_commit.message, 'Merge pull request #')) ||
startsWith(github.ref, 'refs/heads/rc/')
)
) || (github.repository_owner != 'nervosnetwork')
runs-on: ubuntu-20.04
outputs:
os_skip: ${{ steps.prologue.outputs.os_skip }}
job_skip: ${{ steps.prologue.outputs.job_skip }}
linux_runner_label: ${{ steps.prologue.outputs.linux_runner_label }}
steps:
- uses: actions/checkout@v3
- name: prologue
id: prologue
uses: ./.github/actions/ci_prologue
with:
GITHUB_EVENT_NAME: ${{ github.event_name }}
COMMIT_MESSAGE: "${{github.event.head_commit.message}}"
PR_COMMONS_BODY: "${{ github.event.pull_request.body }}"
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
LABELS: "${{ toJson(github.event.pull_request.labels.*.name) }}"
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_WORKFLOW: ${{ github.workflow }}
ci_cargo_deny_ubuntu:
name: ci_cargo_deny_ubuntu
needs: prologue
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: ci_cargo_deny_ubuntu
run: |
if [[ ${{ needs.prologue.outputs.os_skip }} == run ]] && [[ ${{ needs.prologue.outputs.job_skip }} == run ]];then
devtools/ci/ci_main.sh
else
echo "skip job"
exit 0
fi
env:
RUNNER_LABEL: ${{ needs.prologue.outputs.runner_label }}