Skip to content

Commit

Permalink
Merge branch 'VirusTotal:main' into macho-dylibhash
Browse files Browse the repository at this point in the history
  • Loading branch information
latonis authored Apr 4, 2024
2 parents afdc408 + 44c393f commit 2f455ba
Show file tree
Hide file tree
Showing 45 changed files with 1,074 additions and 239 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}

- name: Check version number
shell: bash
run: |
set -ex
version=`cargo pkgid --manifest-path lib/Cargo.toml | cut -d "@" -f2`
if [ "${{ github.ref_name }}" != "v$version" ]; then
exit 1
fi
- name: Install dependencies
id: vcpkg
uses: johnwason/vcpkg-action@v6
Expand All @@ -48,11 +62,6 @@ jobs:
triplet: ${{ matrix.vcpkg_openssl_triplet }}
token: ${{ github.token }}

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}

- name: Build
run: cargo build --bin yr --profile release-lto --target ${{ matrix.target }} ${{ matrix.args }}
env:
Expand Down
Loading

0 comments on commit 2f455ba

Please sign in to comment.