Skip to content

Commit

Permalink
fix: avoid glibc issues by fixing runner os (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Jan 25, 2025
1 parent 3b3de10 commit 0df0743
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
include:
- release_for: Linux-x86_64
build_on: ubuntu-latest
build_on: ubuntu-22
target: x86_64-unknown-linux-gnu
args: "--locked --release"

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
matrix:
os: [
# windows-latest,
ubuntu-latest,
macOS-latest,
ubuntu-22,
macos-14,
macos-13,
]
rust: [stable]
runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ publish = false
pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]

[workspace.metadata.dist.github-custom-runners]
x86_64-unknown-linux-gnu = "ubuntu-22"
aarch64-apple-darwin = "macos-14"
x86_64-apple-darwin = "macos-13"
aarch64-unknown-linux-gnu = "buildjet-2vcpu-ubuntu-2204-arm"

0 comments on commit 0df0743

Please sign in to comment.