From c37bfd8332d6e92d235bee3123f43b0a58ecd339 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sun, 16 Feb 2025 14:09:11 +0100 Subject: [PATCH] build project in CI --- .github/workflows/rust.yml | 37 ++++++++++++++++----------------- ServicePoint.Example/.gitignore | 2 -- ServicePoint.Example/Program.cs | 3 ++- 3 files changed, 20 insertions(+), 22 deletions(-) delete mode 100644 ServicePoint.Example/.gitignore diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fbf93a9..67eb7b4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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,27 +16,29 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: 'recursive' - 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 - run: sudo apt-get update && sudo apt-get install -y liblzma-dev + run: sudo apt-get install -qy liblzma-dev + - name: install dotnet + run: sudo apt-get install -qy dotnet-sdk-8.0 ca-certificates libc6 libgcc-s1 libicu74 liblttng-ust1 libssl3 libstdc++6 libunwind8 zlib1g - - name: Run Clippy - run: cargo clippy --all-targets --all-features - - - name: build default features - run: cargo build --all --verbose - - name: build default features -- examples - run: cargo build --examples --verbose - - name: test default features - run: cargo test --all --verbose + - name: generate bindings + run: ./generate-binding.sh - - name: build all features - run: cargo build --all-features --verbose - - name: build all features -- examples - run: cargo build --all-features --examples --verbose - - name: test all features - run: cargo test --all --all-features --verbose + - name: check that generated files did not change + run: output=$(git status --porcelain) && [ -z "$output" ] + + - name: build solution + run: dotnet publish + + - name: run tests + run: dotnet test + + - name: run example + run: dotnet run --project ServicePoint.Example diff --git a/ServicePoint.Example/.gitignore b/ServicePoint.Example/.gitignore deleted file mode 100644 index 1746e32..0000000 --- a/ServicePoint.Example/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bin -obj diff --git a/ServicePoint.Example/Program.cs b/ServicePoint.Example/Program.cs index 48462a5..37015ee 100644 --- a/ServicePoint.Example/Program.cs +++ b/ServicePoint.Example/Program.cs @@ -1,7 +1,8 @@ using System.Threading; using ServicePoint; -var connection = new Connection("127.0.0.1:2342"); +// TODO: replace with new Connection("127.0.0.1:2342") to send to a real display +var connection = Connection.NewFake(); connection.Send(Command.Clear()); connection.Send(Command.Brightness(5));