Skip to content

Commit

Permalink
Try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Jun 13, 2024
1 parent 81df80c commit ba46d7f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install nasm
run: choco install nasm
if: startsWith(matrix.os, 'windows')

- name: Put nasm into PATH
run: echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
if: startsWith(matrix.os, 'windows')

- name: cargo build
run: cargo build

Expand Down
18 changes: 17 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ actix-web = { version = "4", features = ["macros", "compress-brotli", "compress-
actix-web-httpauth = "0.8"
alphanumeric-sort = "1"
anyhow = "1"
aws-lc-sys = { version = "0.18.0", features = ["bindgen"] }
bytesize = "1"
chrono = "0.4"
chrono-humanize = "0.2"
Expand Down
7 changes: 7 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# [build]
# pre-build = [
# "ls /usr/local/bin",
# "echo $PATH",
# "xargo",
# "cargo install bindgen-cli"
# ]

0 comments on commit ba46d7f

Please sign in to comment.