Skip to content

Commit

Permalink
fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Joylei committed Jul 30, 2023
1 parent 7193a66 commit 5706ca3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install dependencies
run: |
sudo apt-get -qq update
sudo apt install build-essential cmake
shell: bash
if: matrix.os == 'ubuntu-latest'
- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v2
Expand All @@ -42,12 +48,6 @@ jobs:
override: true
- name: Verify versions
run: rustc --version && rustup --version && cargo --version
- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
export ASAN_OPTIONS=verify_asan_link_order=0
fi
shell: bash
- name: Cargo Build
run: cargo build --verbose
- name: Build examples
Expand Down

0 comments on commit 5706ca3

Please sign in to comment.