From d508d5ed0b7ac747b7ef69d444da3158f5dc1f1c Mon Sep 17 00:00:00 2001 From: Sk8erboi84 Date: Thu, 26 Oct 2023 21:34:33 +0200 Subject: [PATCH] revert --- .github/workflows/test.yml | 10 +--------- book/src/continuous-integration/workflows.md | 4 ++-- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2bc7e330..a4c4d39a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [push, pull_request] env: SCARB_VERSION: 0.7.0 - STARKNET_FOUNDRY_VERSION: 0.9.0 + STARKNET_FOUNDRY_VERSION: 0.8.3 jobs: check: @@ -14,14 +14,6 @@ jobs: - uses: software-mansion/setup-scarb@v1 with: scarb-version: "0.7.0" - # - name: Set up Scarb - #ses: software-mansion/setup-scarb@v1 - # Install Scarb from a nightly release - # run: | - # NIGHTLY_DATE=$(echo ${SCARB_VERSION} | cut -d '+' -f 2) - # wget https://github.com/software-mansion/scarb-nightlies/releases/download/${NIGHTLY_DATE}/scarb-${NIGHTLY_DATE}-x86_64-unknown-linux-gnu.tar.gz - # tar -xvf scarb-${NIGHTLY_DATE}-x86_64-unknown-linux-gnu.tar.gz - # sudo mv scarb-v${SCARB_VERSION}-x86_64-unknown-linux-gnu/bin/scarb /usr/local/bin - name: Install starknet foundry run: curl -L https://raw.githubusercontent.com/foundry-rs/starknet-foundry/master/scripts/install.sh | sh -s -- -v ${STARKNET_FOUNDRY_VERSION} - name: Run cairo tests diff --git a/book/src/continuous-integration/workflows.md b/book/src/continuous-integration/workflows.md index ba7600ae..aaa66638 100644 --- a/book/src/continuous-integration/workflows.md +++ b/book/src/continuous-integration/workflows.md @@ -175,7 +175,7 @@ The "Test" GitHub Actions workflow (`test.yml`) ensures the code's integrity by **Environment Variables:** - **SCARB_VERSION:** Specifies the Scarb version, currently set to `0.7.0`. -- **STARKNET_FOUNDRY_VERSION:** Defines the version of Starknet Foundry, currently set to `0.9.0`. +- **STARKNET_FOUNDRY_VERSION:** Defines the version of Starknet Foundry, currently set to `0.8.3`. **Jobs:** 1. **Test & Check Job**: @@ -198,7 +198,7 @@ on: - main env: SCARB_VERSION: 0.7.0 - STARKNET_FOUNDRY_VERSION: 0.9.0 + STARKNET_FOUNDRY_VERSION: 0.8.3 jobs: check: