-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass gas to syscalls, fix examples, allow cairo-native-dump to compil…
…e contracts (#313) * add gas to starknet syscalls and fix example2 * allow cairo native dump to compile contracts directly * name * clippy * try to make ci faster * name
- Loading branch information
Showing
11 changed files
with
451 additions
and
326 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,8 +70,8 @@ jobs: | |
wget -O - -c https://github.com/est31/cargo-udeps/releases/download/v0.1.42/cargo-udeps-v0.1.42-x86_64-unknown-linux-gnu.tar.gz | tar -xz | ||
cargo-udeps-*/cargo-udeps udeps --all-targets --all-features | ||
coverage: | ||
name: test and coverage | ||
test: | ||
name: test (linux, amd64) | ||
runs-on: ubuntu-latest | ||
env: | ||
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | ||
|
@@ -84,8 +84,6 @@ jobs: | |
uses: dtolnay/[email protected] | ||
- name: Retreive cached dependecies | ||
uses: Swatinem/rust-cache@v2 | ||
- name: Install cargo-llvm-cov | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
- name: add llvm deb repository | ||
uses: myci-actions/add-deb-repo@10 | ||
with: | ||
|
@@ -96,14 +94,8 @@ jobs: | |
run: sudo apt-get install llvm-17 llvm-17-dev llvm-17-runtime clang-17 clang-tools-17 lld-17 libpolly-17-dev libmlir-17-dev mlir-17-tools | ||
- name: Fetch corelibs. | ||
run: ./scripts/fetch-corelibs.sh | ||
- name: test and generate coverage | ||
run: make coverage | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | ||
files: lcov.info | ||
fail_ci_if_error: true | ||
- name: test | ||
run: make test | ||
test_macos: | ||
name: Test (macOS, Apple silicon) | ||
runs-on: [self-hosted, macOS] | ||
|
@@ -123,3 +115,30 @@ jobs: | |
run: ./scripts/fetch-corelibs.sh | ||
- name: Run tests | ||
run: make test | ||
coverage: | ||
name: coverage | ||
runs-on: [self-hosted, macOS] | ||
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | ||
MLIR_SYS_170_PREFIX: /opt/homebrew/opt/llvm@17 | ||
TABLEGEN_170_PREFIX: /opt/homebrew/opt/llvm@17 | ||
RUST_LOG: debug | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup rust env | ||
uses: dtolnay/[email protected] | ||
- name: Retreive cached dependecies | ||
uses: Swatinem/rust-cache@v2 | ||
- name: Install cargo-llvm-cov | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
- name: Fetch corelibs. | ||
run: ./scripts/fetch-corelibs.sh | ||
- name: test and generate coverage | ||
run: make coverage | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | ||
files: lcov.info | ||
fail_ci_if_error: true |
Oops, something went wrong.