build: switch from make to mise #127
This file contains hidden or 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: ci | |
on: | |
push: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
# configure sccache to cache the build artifacts (on github caches) | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: full | |
steps: | |
- uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
submodules: "true" | |
- uses: mozilla-actions/[email protected] | |
- uses: jdx/mise-action@v3 | |
with: | |
# version 2025.5.11, a symlink is created for rust setup | |
# without cache, missing components are installed | |
# with cache, nothing is installed, but as rust tool is symlinked, it is not cached => missing components failure | |
cache: false | |
cache_save: false | |
experimental: true | |
- run: mise run ci | |
shell: bash |