Skip to content

Commit

Permalink
Merge pull request #239 from theseus-rs/update-ci-configuration
Browse files Browse the repository at this point in the history
chore: update ci configuration
  • Loading branch information
brianheineman authored Jan 24, 2025
2 parents 145ec54 + bde1b55 commit ba6cd89
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
benchmark:
name: Run Benchmarks
runs-on: macos-14
runs-on: ubuntu-24.04-arm
permissions:
pull-requests: write
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
audit:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
run: cargo audit

check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:
cargo check --workspace --all-targets --all-features
clippy:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -54,7 +54,7 @@ jobs:
cargo clippy --all-targets --all-features --examples --tests
deny:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -68,7 +68,7 @@ jobs:
run: cargo deny check --allow duplicate

doc:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -82,7 +82,7 @@ jobs:
run: cargo doc --workspace --no-deps --document-private-items --all-features

fmt:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
fail-fast: false
matrix:
platform:
- linux-arm
- linux-x64
- macos-arm64
- macos-arm
- macos-x64
- windows-x64
- wasm32-unknown
Expand Down Expand Up @@ -76,7 +77,7 @@ jobs:
cargo build --workspace --target ${{ matrix.target }}
- name: Tests
if: ${{ matrix.platform == 'linux-arm' }}
if: ${{ matrix.platform == '<disabled>' }}
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
jobs:
fuzz:
name: ${{ matrix.target }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
env:
RUSTUP_TOOLCHAIN: nightly
strategy:
Expand Down
2 changes: 1 addition & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
changelog_path = "./CHANGELOG.md"
git_release_enable = true
git_release_enable = false
git_release_body = """
{{ changelog }}
{% if remote.contributors %}
Expand Down

0 comments on commit ba6cd89

Please sign in to comment.