Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows-source/ci-pr-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ env:
anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:5bd0f059ad6e21966e9c644516b6ecd52d5ed44f1b18a76b91b59740a9d639a2
bazel-small-setup: &bazel-small-setup
dind-small-setup: &dind-small-setup
runs-on:
labels: bazel-runner-small
labels: dind-runner-small
container:
<<: *image
timeout-minutes: 30
Expand Down Expand Up @@ -71,9 +71,10 @@ jobs:

lock-generate:
name: Lock Generate
<<: *bazel-small-setup
<<: *dind-small-setup
steps:
- <<: *checkout
- <<: *before-script
- name: Filter Relevant Files
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: filter
Expand All @@ -95,7 +96,7 @@ jobs:

pre-commit:
name: Pre Commit Test
<<: *bazel-small-setup
<<: *dind-small-setup
steps:
- <<: *checkout
with:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ci-pr-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,18 @@ jobs:
lock-generate:
name: Lock Generate
runs-on:
labels: bazel-runner-small
labels: dind-runner-small
container:
image: ghcr.io/dfinity/ic-build@sha256:5bd0f059ad6e21966e9c644516b6ecd52d5ed44f1b18a76b91b59740a9d639a2
timeout-minutes: 30
if: ${{ vars.RUN_CI == 'true' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Before script
id: before-script
shell: bash
run: ./gitlab-ci/src/ci-scripts/before-script.sh
- name: Filter Relevant Files
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: filter
Expand All @@ -80,7 +84,7 @@ jobs:
pre-commit:
name: Pre Commit Test
runs-on:
labels: bazel-runner-small
labels: dind-runner-small
container:
image: ghcr.io/dfinity/ic-build@sha256:5bd0f059ad6e21966e9c644516b6ecd52d5ed44f1b18a76b91b59740a9d639a2
timeout-minutes: 30
Expand Down