Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

zizmor:
name: zizmor 🌈
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
security-events: write
steps:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,13 @@ jobs:
env:
RUST_LOG: trace
TOOLCHAIN: ${{ matrix.rust-toolchain }}
LATEST: ${{endsWith(matrix.os, '-latest') && 'latest' || '' }}
WINDOWS: ${{ startsWith(matrix.os, 'windows') && 'windows' || '' }}"
run: |
OPTIONS=(--no-fail-fast)
if [ "$BUILD_TYPE" ]; then
OPTIONS+=("$BUILD_TYPE")
fi
if [ "$TOOLCHAIN" == "nightly" ] && [ "${{ matrix.type }}" == "debug" ] && [ "$LATEST" == "latest" ]; then
if [ "$TOOLCHAIN" == "nightly" ] && [ "${{ matrix.type }}" == "debug" ]; then
cargo llvm-cov test --mcdc --include-ffi "${OPTIONS[@]}" --codecov --output-path codecov.json
else
if [ "$WINDOWS" == "windows" ]; then
Expand All @@ -130,7 +129,7 @@ jobs:
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: matrix.type == 'debug' && matrix.rust-toolchain == 'nightly' && endsWith(matrix.os, '-latest')
if: matrix.type == 'debug' && matrix.rust-toolchain == 'nightly'

- name: Run tests with sanitizers
if: (matrix.os == 'ubuntu-24.04' || matrix.os == 'macos-14') && matrix.rust-toolchain == 'nightly'
Expand Down Expand Up @@ -410,7 +409,7 @@ jobs:
- run: cargo update -w --locked

check-android:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
# https://searchfox.org/mozilla-central/search?q=NDK_VERSION =&path=python/mozboot/mozboot/android.py
NDK_VERSION: 27.2.12479018 # r27c
Expand Down