Skip to content

Commit

Permalink
Merge pull request #503 from fuzzland/fix-release-lack-of-libs
Browse files Browse the repository at this point in the history
fix release
  • Loading branch information
jacob-chia authored Jun 5, 2024
2 parents 983cb07 + 41cc1d4 commit 64a0b35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
prepare:
name: Prepare release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 30
outputs:
tag_name: ${{ steps.release_info.outputs.tag_name }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
# The target is used by Cargo
# The arch is either 386, arm64 or amd64
# The svm target platform to use for the binary https://github.com/roynalnaruto/svm-rs/blob/84cbe0ac705becabdc13168bae28a45ad2299749/svm-builds/build.rs#L4-L24
- os: ubuntu-20.04
- os: ubuntu-22.04
platform: linux
target: x86_64-unknown-linux-gnu
arch: amd64
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
prefix-key: "v1"
prefix-key: "v2"
key: ${{ matrix.job.target }}

- name: MacOS setup Z3
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
cleanup:
name: Release cleanup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 30
needs: release
steps:
Expand Down
4 changes: 3 additions & 1 deletion ityfuzzup/ityfuzzup
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ main() {
| tr -d '"' \
| tr -d ' ' \
| cut -d ':' -f2 )
ITYFUZZ_TAG="nightly-${SHA}"
if [ -n "$SHA" ]; then
ITYFUZZ_TAG="nightly-${SHA}"
fi
elif [[ "$ITYFUZZ_VERSION" == nightly* ]]; then
ITYFUZZ_VERSION="nightly"
elif [[ "$ITYFUZZ_VERSION" == [[:digit:]]* ]]; then
Expand Down

0 comments on commit 64a0b35

Please sign in to comment.