servicepoint-binding-csharp/.github/workflows/rust.yml

42 lines
1,004 B
YAML
Raw Normal View History

2024-06-05 20:43:55 +02:00
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
# Make sure CI fails on all warnings, including Clippy lints
RUSTFLAGS: "-Dwarnings"
2024-06-05 20:43:55 +02:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2025-02-16 14:09:54 +01:00
with:
submodules: 'true'
- name: Update repos
run: sudo apt-get update -qq
- name: Install rust toolchain
run: sudo apt-get install -qy cargo rust-clippy
- name: install lzma
2025-02-16 14:09:11 +01:00
run: sudo apt-get install -qy liblzma-dev
- name: install dotnet
2025-02-16 14:09:54 +01:00
run: sudo apt-get install -qy dotnet-sdk-8.0 ca-certificates libc6 libgcc-s1 libicu74 liblttng-ust1 libssl3 libstdc++6 libunwind8 zlib1g
2025-02-16 14:09:11 +01:00
- name: generate bindings
run: ./generate-binding.sh
- name: check that generated files did not change
run: output=$(git status --porcelain) && [ -z "$output" ]
- name: build solution
run: dotnet publish