build project in CI
Some checks failed
Rust / build (push) Failing after 4m42s

This commit is contained in:
Vinzenz Schroeter 2025-02-16 14:09:54 +01:00
parent 2a94287f35
commit b0f7d640d4

View file

@ -9,9 +9,6 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
# Make sure CI fails on all warnings, including Clippy lints
RUSTFLAGS: "-Dwarnings"
jobs: jobs:
build: build:
@ -19,6 +16,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Update repos - name: Update repos
run: sudo apt-get update -qq run: sudo apt-get update -qq
@ -27,7 +26,7 @@ jobs:
- name: install lzma - name: install lzma
run: sudo apt-get install -qy liblzma-dev run: sudo apt-get install -qy liblzma-dev
- name: install dotnet - 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 - name: generate bindings
run: ./generate-binding.sh run: ./generate-binding.sh