This commit is contained in:
kalkyl 2023-05-09 02:21:17 +02:00
parent 72b0379125
commit fdc87a8e7f
2 changed files with 47 additions and 0 deletions

29
.github/workflows/rust.yml vendored Normal file
View File

@ -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

18
ci.sh Normal file
View File

@ -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