Skip to content
Open
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
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
linting:
name: "Lints, pinned toolchain"
runs-on: "ubuntu-24.04"
container: "ghcr.io/trusted-execution-clusters/buildroot:latest"
container: "ghcr.io/trusted-execution-clusters/buildroot:fedora"
steps:
- name: "Check out repository"
uses: actions/checkout@v6
Expand All @@ -55,3 +55,5 @@ jobs:
run: go vet ./...
- name: "Ensure Rust & Go conditions definitions use same strings"
run: cargo test --test equal_conditions
- name: "Ensure rustls isn't used"
run: "! { cargo tree -e normal | grep rustls | grep -v rustls-pki-types; }"
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
tests-stable:
name: "Tests, stable toolchain"
runs-on: "ubuntu-24.04"
container: "ghcr.io/trusted-execution-clusters/buildroot:latest"
container: "ghcr.io/trusted-execution-clusters/buildroot:fedora"
steps:
- name: "Check out repository"
uses: actions/checkout@v6
Expand All @@ -50,7 +50,7 @@ jobs:
tests-release-stable:
name: "Tests (release), stable toolchain"
runs-on: "ubuntu-24.04"
container: "ghcr.io/trusted-execution-clusters/buildroot:latest"
container: "ghcr.io/trusted-execution-clusters/buildroot:fedora"
steps:
- name: "Check out repository"
uses: actions/checkout@v6
Expand All @@ -74,7 +74,7 @@ jobs:
tests-release-msrv:
name: "Tests (release), minimum supported toolchain"
runs-on: "ubuntu-24.04"
container: "ghcr.io/trusted-execution-clusters/buildroot:latest"
container: "ghcr.io/trusted-execution-clusters/buildroot:fedora"
steps:
- name: "Check out repository"
uses: actions/checkout@v6
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
tests-other-channels:
name: "Tests, unstable toolchain"
runs-on: "ubuntu-24.04"
container: "ghcr.io/trusted-execution-clusters/buildroot:latest"
container: "ghcr.io/trusted-execution-clusters/buildroot:fedora"
continue-on-error: true
strategy:
matrix:
Expand Down
Loading