Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [NODE-1355] Upgrade build container to 24.04 #1946

Merged
merged 22 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041",
"image": "ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68",
"remoteUser": "ubuntu",
"privileged": true,
"runArgs": [
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows-source/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:

anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
dind-large-setup: &dind-large-setup
runs-on:
labels: dind-large
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
run: |
set -xeuo pipefail
export PYTHONPATH=$PWD/ci/src:$PWD/ci/src/dependencies
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
cd ci/src
pytest -m "not fails_on_merge_train" -v -o junit_family=xunit1 \
--junitxml=../../test_report.xml --cov=. --cov-report=term \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows-source/ci-pr-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
dind-small-setup: &dind-small-setup
timeout-minutes: 30
runs-on:
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
id: setup-python-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
- name: Dependency Scan for Pull Request
id: dependencies-check
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows-source/release-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
dind-large-setup: &dind-large-setup
runs-on:
group: zh1
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
id: setup-python-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
- name: Dependency Scan for Release
id: dependency-scan-release-cut
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows-source/schedule-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
dind-large-setup: &dind-large-setup
runs-on:
group: zh1
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
id: setup-environment-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
cargo install wasm-pack --version "${CARGO_WASMPACK_VERSION}"
source "${NVM_DIR}/nvm.sh"
nvm use ${DEFAULT_NODE_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows-source/schedule-hourly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

anchors:
image: &image
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
dind-large-setup: &dind-large-setup
runs-on:
labels: dind-large
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
bazel-test-all:
name: Bazel Test All
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
runs-on:
labels: dind-small
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
timeout-minutes: 30
steps:
- name: Checkout
Expand All @@ -298,7 +298,7 @@ jobs:
run: |
set -xeuo pipefail
export PYTHONPATH=$PWD/ci/src:$PWD/ci/src/dependencies
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
cd ci/src
pytest -m "not fails_on_merge_train" -v -o junit_family=xunit1 \
--junitxml=../../test_report.xml --cov=. --cov-report=term \
Expand All @@ -312,7 +312,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -417,7 +417,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp -v /ceph-s3-info:/ceph-s3-info
timeout-minutes: 90
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-pr-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME
steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on:
labels: dind-small
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME
steps:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on:
labels: dind-small
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME
steps:
Expand All @@ -120,7 +120,7 @@ jobs:
runs-on:
labels: dind-small
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME
timeout-minutes: 60
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
id: setup-python-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
- name: Dependency Scan for Pull Request
id: dependencies-check
shell: bash
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 180 # 3 hours
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 180 # 3 hours
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 90
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 60
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
id: setup-python-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
- name: Dependency Scan for Release
id: dependency-scan-release-cut
shell: bash
Expand All @@ -222,7 +222,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 180 # 3 hours
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 180 # 3 hours
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rosetta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/schedule-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
bazel-test-bare-metal:
name: Bazel Test Bare Metal
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 120
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 720 # 12 hours
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 20
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 480
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
group: zh1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 60
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
id: setup-environment-deps
shell: bash
run: |
pip3 install --ignore-installed -r requirements.txt
PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install --ignore-installed -r requirements.txt
cargo install wasm-pack --version "${CARGO_WASMPACK_VERSION}"
source "${NVM_DIR}/nvm.sh"
nvm use ${DEFAULT_NODE_VERSION}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/schedule-hourly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 120
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
bazel-system-test-hourly:
name: Bazel System Tests Hourly
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 120
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME --privileged --cgroupns host -v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 120
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-rust-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# see linux-x86-64 runner group
labels: rust-benchmarks
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
# running on bare metal machine using ubuntu user
options: --user ubuntu -v /cache:/cache
timeout-minutes: 720 # 12 hours
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on:
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME
-v /cache:/cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/system-tests-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
group: ln1
labels: dind-large
container:
image: ghcr.io/dfinity/ic-build@sha256:2c6fc0aa92ada647e42790cbdac3199b27a1407d9e90ff6e5a97a69acac24041
image: ghcr.io/dfinity/ic-build@sha256:7027729912789141064925ecc52d1bc3a4e8b23c204a904f33a64206df1b7c68
options: >-
-e NODE_NAME -e KUBECONFIG
--privileged --cgroupns host
Expand Down
Loading
Loading