Skip to content

Commit

Permalink
Simplify rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius authored Nov 14, 2023
1 parent 411098f commit b904645
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,16 @@ jobs:
if [[ ${{ matrix.environment }} = 'macos-latest' ]]; then
brew update
brew install llvm@"$LLVM_VERSION" || true
echo "PATH=/usr/local/opt/llvm/bin:$PATH" >> "$GITHUB_OUTPUT"
echo "/usr/local/opt/llvm/bin" >> "$GITHUB_PATH"
else
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh "$LLVM_VERSION"
echo "PATH=$PATH" >> "$GITHUB_OUTPUT"
fi
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
- name: Build
run: cargo build --features=${{ matrix.features }} -vv
env:
PATH: ${{ steps.install-llvm.outputs.path }}
- name: Run afl-system-config
run: cargo run --features=${{ matrix.features }} -- afl system-config
- name: Build examples (with AFL instrumentation)
Expand Down

0 comments on commit b904645

Please sign in to comment.