Skip to content

Commit

Permalink
migrating from actions-rs to dtolnay stuff; test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
epi052 committed Sep 14, 2024
1 parent f96466d commit 4f83b30
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,18 @@ jobs:
env
sudo apt-get update
sudo apt-get install -y --no-install-recommends libssl-dev pkg-config
- uses: actions-rs/toolchain@v1
- name: Set up Rust toolchain
uses: actions/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
target: x86_64-unknown-linux-musl
override: true
- uses: actions-rs/cargo@v1

- name: Build the project
env:
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig
OPENSSL_DIR: /usr/lib/ssl
with:
use-cross: true
command: build
args: --target=x86_64-unknown-linux-musl
run: cargo build --target=x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v4
with:
name: x86_64-linux-debug-feroxbuster
Expand Down

0 comments on commit 4f83b30

Please sign in to comment.