Skip to content

Commit e503a56

Browse files
committed
ci
1 parent d1f7e94 commit e503a56

File tree

1 file changed

+2
-25
lines changed

1 file changed

+2
-25
lines changed

.github/workflows/ci-pic.yml

+2-25
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,9 @@
11
name: CI PocketIC
22
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-*'
103
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
174
concurrency:
18-
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
5+
group: ${{ github.workflow }}-${{ github.head_ref}}
196
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"
307
jobs:
318
pic-test-all:
329
name: PocketIC Test
@@ -56,4 +33,4 @@ jobs:
5633
DOCKER_HUB_PASSWORD_RO: ${{ secrets.DOCKER_HUB_PASSWORD_RO }}
5734
- name: Run Bazel Test All
5835
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"

0 commit comments

Comments
 (0)