File tree 1 file changed +2
-25
lines changed
1 file changed +2
-25
lines changed Original file line number Diff line number Diff line change 1
1
name : CI PocketIC
2
2
on :
3
- merge_group :
4
- # Allows you to run this workflow manually from the Actions tab
5
- workflow_dispatch :
6
- push :
7
- branches :
8
- - master
9
- - ' dev-gh-*'
10
3
pull_request :
11
- branches-ignore :
12
- - hotfix-* # This is to ensure that this workflow is not triggered twice on ic-private, as it's already triggered from release-testing
13
- # Used as reusable workflow within release-testing workflow
14
- workflow_call :
15
- # runs for the same workflow are cancelled on PRs but not on master
16
- # explanation: on push to master head_ref is not set, so we want it to fall back to run_id so it is not cancelled
17
4
concurrency :
18
- group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
5
+ group : ${{ github.workflow }}-${{ github.head_ref}}
19
6
cancel-in-progress : true
20
- env :
21
- CI_COMMIT_SHA : ${{ github.sha }}
22
- CI_JOB_NAME : ${{ github.job }}
23
- CI_JOB_URL : " ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
24
- CI_PIPELINE_SOURCE : ${{ github.event_name }}
25
- CI_PROJECT_DIR : ${{ github.workspace }}
26
- BRANCH_NAME : ${{ github.head_ref || github.ref_name }}
27
- CI_RUN_ID : ${{ github.run_id }}
28
- RUSTFLAGS : " --remap-path-prefix=${CI_PROJECT_DIR}=/ic"
29
- BUILDEVENT_DATASET : " github-ci-dfinity"
30
7
jobs :
31
8
pic-test-all :
32
9
name : PocketIC Test
56
33
DOCKER_HUB_PASSWORD_RO : ${{ secrets.DOCKER_HUB_PASSWORD_RO }}
57
34
- name : Run Bazel Test All
58
35
run : |
59
- bazel test //packages/pocket-ic:test --cache_test_results=no --test_output=all --test_arg="--nocapture"
36
+ bazel test //packages/pocket-ic:test --cache_test_results=no --test_output=streamed --test_arg="--nocapture"
You can’t perform that action at this time.
0 commit comments