Merge pull request #57 from NotAShelf/notashelf/push-pynzzylozqql

NO MORE STDS!!!!!
This commit is contained in:
raf 2026-04-11 10:19:12 +03:00 committed by GitHub
commit bf25c77b8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 1219 additions and 221 deletions

View file

@ -16,6 +16,11 @@ jobs:
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
- name: Make Mold the default linker
uses: rui314/setup-mold@v1
- name: Create metrics directory
run: mkdir -p /tmp/metrics

View file

@ -29,16 +29,18 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: ${{ matrix.target }}
rustflags: ""
- name: "Make Mold the default linker"
uses: rui314/setup-mold@v1
- name: "Install cross"
run: cargo install cross --git https://github.com/cross-rs/cross
- name: "Setup cross-compilation toolchain"
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: "Build"
run: cross build --verbose --target ${{ matrix.target }}
run: cargo build --verbose
- name: "Run tests"
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: cross test --verbose --target ${{ matrix.target }}
run: cargo test --workspace --exclude microfetch --verbose