push to 0.15.0 (#80) #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nightly | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
nightly: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
- name: Run sccache stat for check before | |
shell: bash | |
run: ${SCCACHE_PATH} --show-stats | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- uses: extractions/setup-just@v1 | |
- name: cargo build | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
run: | | |
rustup default nightly | |
just build-simd | |
- name: cargo test | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
run: | | |
rustup default nightly | |
just test-simd | |
- name: Run sccache stat for check after | |
shell: bash | |
run: ${SCCACHE_PATH} --show-stats |