Allow generating CLI completions #9934
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: | |
merge_group: | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: ${{ github.head_ref != 'main' }} | |
env: | |
# TODO(#1915): Use stable toolchain once stwo is stable. | |
RUST_NIGHTLY_TOOLCHAIN: "nightly-2025-02-13" | |
jobs: | |
build-test: | |
name: build test ${{ matrix.platform.name }} | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: linux x86-64 | |
os: ubuntu-latest | |
- name: windows x86-64 | |
os: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@nextest | |
- name: nextest archive | |
run: cargo nextest archive --workspace --all-features --cargo-profile ci --archive-file 'nextest-archive-${{ matrix.platform.os }}.tar.zst' --exclude scarb-prove --exclude scarb-verify --exclude scarb-completions --exclude cairo-lang-macro | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: nextest-archive-${{ matrix.platform.os }} | |
path: nextest-archive-${{ matrix.platform.os }}.tar.zst | |
test: | |
name: test ${{ matrix.platform.name }} ${{ matrix.partition }}/4 | |
runs-on: ${{ matrix.platform.os }} | |
needs: | |
- build-test | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: linux x86-64 | |
os: ubuntu-latest | |
- name: windows x86-64 | |
os: windows-latest | |
partition: [ 1, 2, 3, 4 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@nextest | |
- uses: actions/download-artifact@v4 | |
with: | |
name: nextest-archive-${{ matrix.platform.os }} | |
- name: nextest partition ${{ matrix.partition }}/4 | |
run: cargo nextest run --partition 'count:${{ matrix.partition }}/4' --archive-file 'nextest-archive-${{ matrix.platform.os }}.tar.zst' | |
test-doc: | |
name: doc tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: run tests | |
run: cargo test --doc --workspace --exclude scarb-prove --exclude scarb-verify --exclude scarb-completions | |
scarb-metadata-compatibility: | |
name: scarb-metadata compatibility check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- uses: software-mansion/setup-scarb@v1 | |
with: | |
cache: false | |
scarb-version: "2.3.0" | |
- run: echo "SCARB_TEST_BIN=$(which scarb)" >> $GITHUB_ENV | |
- name: run tests | |
run: cargo test -p scarb-metadata | |
build-nightly-test: | |
name: build nightly test ${{ matrix.platform.name }} | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
# TODO: Enable tests on windows when stwo supports it. | |
- name: linux x86-64 | |
os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
- uses: taiki-e/install-action@nextest | |
- uses: Swatinem/rust-cache@v2 | |
- name: nextest archive | |
run: cargo nextest archive --all-features --cargo-profile ci --archive-file 'nextest-nightly-archive-${{ matrix.platform.os }}.tar.zst' --package scarb-prove --package scarb-verify --package scarb-completions | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: nextest-nightly-archive-${{ matrix.platform.os }} | |
path: nextest-nightly-archive-${{ matrix.platform.os }}.tar.zst | |
test-nightly: | |
name: test nightly ${{ matrix.platform.name }} | |
runs-on: ${{ matrix.platform.os }} | |
needs: | |
- build-test | |
- build-nightly-test | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: linux x86-64 | |
os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
- uses: taiki-e/install-action@nextest | |
- uses: Swatinem/rust-cache@v2 | |
- name: Download stable build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: nextest-archive-${{ matrix.platform.os }} | |
- name: Unpack build stable rust artifacts from nextest archive on linux | |
if: matrix.platform.os == 'ubuntu-latest' | |
run: | | |
tar --use-compress-program=unzstd -xvf nextest-archive-ubuntu-latest.tar.zst | |
mv target stable-crates-target | |
echo "NEXTEST_BIN_EXE_scarb=$GITHUB_WORKSPACE/stable-crates-target/ci/scarb" >> $GITHUB_ENV | |
echo "$GITHUB_WORKSPACE/stable-crates-target/ci" >> $GITHUB_PATH | |
echo "$GITHUB_WORKSPACE/target/ci" >> $GITHUB_PATH | |
- name: Download nightly build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: nextest-nightly-archive-${{ matrix.platform.os }} | |
- name: nextest partition | |
run: cargo nextest run --archive-file 'nextest-nightly-archive-${{ matrix.platform.os }}.tar.zst' --extract-to ./ | |
test-cairo-lang-macro: | |
name: test cairo-lang-macro ${{ matrix.platform.name }} | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: linux x86-64 | |
os: ubuntu-latest | |
- name: windows x86-64 | |
os: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
# Note tests depending on trybuild crate cannot be run with nextest, | |
# as they require access to cargo build cache of the package, | |
# which is not archived with nextest-archive. | |
run: cargo test -p cairo-lang-macro --all-features | |
check-rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo fmt --check | |
# TODO(#1915): Build all crates with stable toolchain once stwo is stable. | |
- run: cargo clippy --all-targets --all-features --workspace --exclude scarb-prove --exclude scarb-verify --exclude scarb-completions -- --no-deps | |
env: | |
# Make sure CI fails on all warnings, including Clippy lints. | |
RUSTFLAGS: "-Dwarnings" | |
- run: cargo doc --all-features --no-deps --workspace --exclude scarb-prove --exclude scarb-verify --exclude scarb-completions | |
env: | |
# Make sure CI fails on all warnings, including Clippy lints. | |
RUSTDOCFLAGS: "-Dwarnings" | |
check-rust-nightly: | |
name: check-rust (nightly) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} clippy --all-targets --all-features -p scarb-prove -p scarb-verify -p scarb-completions -- --no-deps | |
env: | |
# Make sure CI fails on all warnings, including Clippy lints. | |
RUSTFLAGS: "-Dwarnings" | |
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} doc --all-features --no-deps -p scarb-prove -p scarb-verify -p scarb-completions | |
env: | |
# Make sure CI fails on all warnings, including Clippy lints. | |
RUSTDOCFLAGS: "-Dwarnings" | |
check-website: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./website | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: npm | |
cache-dependency-path: website/package-lock.json | |
- run: npm ci | |
- run: npm run fmt:check | |
- run: npm run build | |
snforge-init: | |
runs-on: ubuntu-latest | |
needs: | |
- build-test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@nextest | |
- uses: actions/download-artifact@v4 | |
with: | |
name: nextest-archive-ubuntu-latest | |
- uses: foundry-rs/setup-snfoundry@v4 | |
- run: cargo nextest run --archive-file 'nextest-archive-ubuntu-latest.tar.zst' --run-ignored=all --filterset 'test(new_simple)' |