Add FreeBSD CI job with no cache #23
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
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - mempool | |
| name: Compile Check and Lint | |
| jobs: | |
| check: | |
| name: Compile Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: './.github/actions/ci-rust-setup' | |
| with: | |
| cache-name: dev | |
| - run: cargo check --all-features | |
| fmt: | |
| name: Formatter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: './.github/actions/ci-rust-setup' | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --all -- --check | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: './.github/actions/ci-rust-setup' | |
| with: | |
| cache-name: test | |
| - run: cargo test --lib --all-features | |
| test-freebsd: | |
| runs-on: ubuntu-latest | |
| name: Run Tests in FreeBSD | |
| env: | |
| FREEBSD_VER: "14.3" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache dependencies for FreeBSD | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| .cargohome/registry | |
| .cargohome/git | |
| target | |
| key: freebsd-${{ env.FREEBSD_VER }}-cargo-test-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Test in FreeBSD | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| usesh: true | |
| release: "${{ env.FREEBSD_VER }}" | |
| arch: amd64 | |
| prepare: | | |
| mkdir -p ~/.cargo/ | |
| mkdir -p ./.cargohome/registry/ | |
| mkdir -p ./.cargohome/git/ | |
| mv ./.cargohome/registry ~/.cargo/ | |
| mv ./.cargohome/git ~/.cargo/ | |
| rm -rf ./.cargohome | |
| pkg install -y git rsync gmake llvm rust | |
| run: | | |
| cargo check --no-default-features | |
| cargo check -F liquid | |
| cargo check -F electrum-discovery | |
| cargo check -F electrum-discovery,liquid | |
| rm -rf ./.cargohome | |
| mkdir -p ~/.cargo/registry/ | |
| mkdir -p ~/.cargo/git/ | |
| mkdir -p ./.cargohome/ | |
| mv ~/.cargo/registry ./.cargohome/ | |
| mv ~/.cargo/git ./.cargohome/ | |
| clippy: | |
| name: Linter | |
| runs-on: ubuntu-latest | |
| needs: [check] | |
| strategy: | |
| matrix: # Try all combinations of features. Some times weird things appear. | |
| features: [ | |
| '', | |
| '-F electrum-discovery', | |
| '-F liquid', | |
| '-F electrum-discovery,liquid', | |
| ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: './.github/actions/ci-rust-setup' | |
| with: | |
| cache-name: dev | |
| components: clippy | |
| - name: Clippy with Features = ${{ matrix.features }} | |
| run: cargo clippy ${{ matrix.features }} -- -D warnings |