build(deps): bump jsonschema from 0.44.1 to 0.45.0 #1466
Workflow file for this run
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: Linux - musl | |
| on: | |
| # push: | |
| # branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-linux-musl-tests-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| # Skip CI for MCP-only commits (commit message contains "(mcp):") | |
| if: | | |
| github.event_name != 'push' || | |
| !contains(github.event.head_commit.message, '(mcp):') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: apt-get update Ubuntu | |
| run: | | |
| sudo apt-get update | |
| - name: build prep for x86_64-unknown-linux-musl | |
| run: | | |
| sudo apt-get install musl-tools musl-dev | |
| sudo ln -s /usr/bin/g++ /usr/bin/musl-g++ | |
| sudo apt-get autoremove --purge | |
| sudo apt-get autoclean | |
| sudo apt-get clean | |
| - uses: actions/checkout@v6 | |
| - name: Installing Rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| targets: x86_64-unknown-linux-musl | |
| - name: Setup Rust-cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: qsv-x86_64-unknown-linux-musl-cache | |
| - name: Run tests | |
| # env: | |
| # RUSTFLAGS: -C target-cpu=native | |
| run: cargo test --no-default-features --target x86_64-unknown-linux-musl --verbose --locked --features=lite |