Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed Nov 26, 2024
1 parent 1196c40 commit d6621dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: Homebrew/actions/setup-homebrew@master
- run: apt-get install -y libstdc++6
- run: tools/setup.sh
- run: cargo test
lint:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ llvm18-0 = []
llvm19-0 = []

[dependencies]
thiserror = "1.0.61"
thiserror = "2.0.3"
paste = "1.0.15"

[build-dependencies]
bindgen = "0.69.4"
cc = "1.0.98"
bindgen = "0.70.1"
cc = "1.2.1"
4 changes: 2 additions & 2 deletions tools/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ llvm_prefix=$(brew --prefix llvm@$llvm_version)

echo TABLEGEN_190_PREFIX=$llvm_prefix >>$GITHUB_ENV
echo PATH=$llvm_prefix/bin:$PATH >>$GITHUB_ENV
echo LIBRARY_PATH=$(brew --prefix)/lib:$LIBRARY_PATH >>$GITHUB_ENV
echo LD_LIBRARY_PATH=$(brew --prefix)/lib:$LD_LIBRARY_PATH >>$GITHUB_ENV
#echo LIBRARY_PATH=$(brew --prefix)/lib:$LIBRARY_PATH >>$GITHUB_ENV
#echo LD_LIBRARY_PATH=$(brew --prefix)/lib:$LD_LIBRARY_PATH >>$GITHUB_ENV

0 comments on commit d6621dd

Please sign in to comment.