Skip to content

Commit

Permalink
branch deleted, revision pointing to master
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Oct 5, 2024
1 parent 622f8e0 commit 79de549
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ env:
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v2.3.6/dasel_linux_amd64
RUSTFLAGS: "-D warnings"
FUEL_CORE_VERSION: 0.36.0
FUEL_CORE_PATCH_BRANCH: "feature/predicate-ldc"
FUEL_CORE_PATCH_BRANCH: ""
FUEL_CORE_PATCH_REVISION: "773226c"
RUST_VERSION: 1.79.0
FORC_VERSION: 0.64.0
FORC_PATCH_BRANCH: ""
Expand Down Expand Up @@ -108,6 +109,9 @@ jobs:
run: |
if [[ -n $FUEL_CORE_PATCH_BRANCH ]]; then
cargo install --locked fuel-core-bin --git https://github.com/FuelLabs/fuel-core --branch "$FUEL_CORE_PATCH_BRANCH" --root fuel-core-install
elif [[ -n $FUEL_CORE_PATCH_REVISION ]]; then
cargo install --locked fuel-core-bin --git https://github.com/FuelLabs/fuel-core --rev "$FUEL_CORE_PATCH_REVISION" --root fuel-core-install
else
curl -sSLf https://github.com/FuelLabs/fuel-core/releases/download/v${{ env.FUEL_CORE_VERSION }}/fuel-core-${{ env.FUEL_CORE_VERSION }}-x86_64-unknown-linux-gnu.tar.gz -L -o fuel-core.tar.gz
tar -xvf fuel-core.tar.gz
Expand Down

0 comments on commit 79de549

Please sign in to comment.