This commit is contained in:
parent
2a94287f35
commit
b0f7d640d4
7
.github/workflows/rust.yml
vendored
7
.github/workflows/rust.yml
vendored
|
@ -9,9 +9,6 @@ on:
|
|||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
# Make sure CI fails on all warnings, including Clippy lints
|
||||
RUSTFLAGS: "-Dwarnings"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
|
@ -19,6 +16,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
|
||||
- name: Update repos
|
||||
run: sudo apt-get update -qq
|
||||
|
@ -27,7 +26,7 @@ jobs:
|
|||
- name: install lzma
|
||||
run: sudo apt-get install -qy liblzma-dev
|
||||
- name: install dotnet
|
||||
run: dotnet-sdk-8.0 ca-certificates libc6 libgcc-s1 libicu74 liblttng-ust1 libssl3 libstdc++6 libunwind8 zlib1g
|
||||
run: sudo apt-get install -qy dotnet-sdk-8.0 ca-certificates libc6 libgcc-s1 libicu74 liblttng-ust1 libssl3 libstdc++6 libunwind8 zlib1g
|
||||
|
||||
- name: generate bindings
|
||||
run: ./generate-binding.sh
|
||||
|
|
Loading…
Reference in a new issue