From fdc87a8e7f70e5246ab608df931a9623fb0289b4 Mon Sep 17 00:00:00 2001 From: kalkyl Date: Tue, 9 May 2023 02:21:17 +0200 Subject: [PATCH] Add CI --- .github/workflows/rust.yml | 29 +++++++++++++++++++++++++++++ ci.sh | 18 ++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/workflows/rust.yml create mode 100644 ci.sh diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 00000000..dfa96dd0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,29 @@ +name: Rust + +on: + push: + branches: [main] + pull_request: + branches: [main] + merge_group: + +env: + CARGO_TERM_COLOR: always + +jobs: + build-nightly: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/cache@v2 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + + - name: Check fmt + run: cargo fmt -- --check + - name: Build + run: ./ci.sh diff --git a/ci.sh b/ci.sh new file mode 100644 index 00000000..74610ff2 --- /dev/null +++ b/ci.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +set -euxo pipefail + +export DEFMT_LOG=trace + +# build examples +#================== + +(cd examples; cargo build --bin multisocket --release) +(cd examples; cargo build --bin tcp-client --release) +(cd examples; cargo build --bin tcp-server --release) +(cd examples; cargo build --bin tcp-udp --release) + +# build lib +#============ + +cargo build --target thumbv6m-none-eabi