Feat/features abi flag #1484
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| msrv-check: | |
| runs-on: ${{ matrix.platform }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Get MSRV | |
| run: | | |
| RUST_MSRV="$(cat cargo-near/Cargo.toml | sed -n 's/rust-version *= *"\(.*\)"/\1/p')" | |
| echo "RUST_MSRV=$RUST_MSRV" >> $GITHUB_ENV | |
| - name: "Install ${{ env.RUST_MSRV }} toolchain (MSRV)" | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: ${{ env.RUST_MSRV }} | |
| default: true | |
| - name: Install packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
| - name: Cargo check | |
| env: | |
| # info: (overridden by '/home/runner/work/cargo-near/cargo-near/rust-toolchain.toml') | |
| RUSTUP_TOOLCHAIN: ${{ env.RUST_MSRV }} | |
| run: | | |
| rustc -vV | |
| cargo check -p cargo-near | |
| # default features | |
| cargo check -p cargo-near-build | |
| cargo check -p cargo-near-build --features build_internal | |
| cargo check -p cargo-near-build --features docker | |
| cargo check -p cargo-near-build --all-features | |
| tests: | |
| runs-on: ${{ matrix.platform }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: "Install stable Rust toolchain for compiling the CLI and lib" | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| # channel is really controlled by ./rust-toolchain.toml | |
| toolchain: stable | |
| default: true | |
| profile: minimal | |
| - name: "Install pinned 1.86.0 Rust toolchain for compiling contracts for tests with live node" | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: 1.86.0 | |
| default: false | |
| profile: minimal | |
| target: wasm32-unknown-unknown | |
| - name: Install packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
| - name: Install latest (released) cargo-near CLI | |
| # dependency of `cargo-near-integration-tests::cargo_near_new::test_cargo_test_on_generated_project` | |
| # which uses `near_workspaces::compile_project` | |
| run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/latest/download/cargo-near-installer.sh | sh | |
| - name: Run tests | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "nearprotocol-ci" | |
| cargo test --workspace | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Check Formatting | |
| run: cargo fmt -- --check | |
| - name: Install packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
| - name: Check Clippy | |
| run: cargo clippy --tests -- -Dclippy::all | |
| # there're sometimes warnings, which signal, that the generated doc | |
| # won't look as expected, when rendered, and sometimes errors, which will prevent doc from being | |
| # generated at release time altogether. | |
| cargo-doc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
| - name: run cargo doc | |
| run: RUSTDOCFLAGS="-D warnings" cargo doc -p cargo-near-build | |
| doctests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
| - name: Build doctests (compilation and linking) | |
| env: | |
| CARGO_BUILD_JOBS: 1 | |
| run: cargo test -p cargo-near-build --doc -j1 --no-run | |
| - name: Run doctests (execution only) | |
| env: | |
| CARGO_BUILD_JOBS: 1 | |
| run: cargo test -p cargo-near-build --doc -j1 -- --test-threads=1 | |
| typos_check: | |
| name: Spell Check with typos-cli (rs crate) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Check spelling of the repo | |
| uses: crate-ci/[email protected] | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Audit Tool | |
| run: cargo install cargo-audit | |
| - name: Run Audit Tool | |
| run: cargo audit |