Skip to content

Commit

Permalink
attempt to fix env variable again
Browse files Browse the repository at this point in the history
  • Loading branch information
andogq committed Jul 18, 2024
1 parent d4229fd commit 0bb6f8d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
env:
CARGO_TERM_COLOR: "always"
LLVM_PATH: "./llvm"
LLVM_SYS_170_PREFIX: "./llvm"
steps:
- name: "Checkout code"
uses: "actions/checkout@v4"
Expand All @@ -24,9 +23,15 @@ jobs:

- name: "Clippy"
run: cargo clippy --verbose
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"

- name: "Build"
run: cargo build --verbose
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"

- name: "Test"
run: cargo test --verbose
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"

0 comments on commit 0bb6f8d

Please sign in to comment.