Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to GitHub Actions for CI #195

Merged
merged 3 commits into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 0 additions & 95 deletions .circleci/config.yml

This file was deleted.

63 changes: 63 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
merge_group:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"

jobs:
build:
name: Test debug on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- if: ${{ matrix.os == 'ubuntu-latest' }}
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libssl-dev pkg-config libasound2-dev
version: latest
- uses: Swatinem/rust-cache@v2.7.0
- name: Versions
run: cargo --version && rustc --version && cargo fmt -- --version && cargo clippy -- --version
- run: cargo fmt --all -- --check
- run: cargo clippy --all -- --deny=warnings
- run: cargo clippy --all --no-default-features -- --deny=warnings
- run: cargo audit --ignore RUSTSEC-2020-0056 --ignore RUSTSEC-2022-0048 --ignore RUSTSEC-2020-0071
- run: cargo build --all
- run: cargo build --all --no-default-features
- run: cargo test --all

build-release:
name: Test release on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- if: ${{ matrix.os == 'ubuntu-latest' }}
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libssl-dev pkg-config libasound2-dev
version: latest
- uses: Swatinem/rust-cache@v2.7.0
- name: Versions
run: cargo --version && rustc --version && cargo fmt -- --version && cargo clippy -- --version
- run: cargo fmt --all -- --check
- run: cargo clippy --release --all -- --deny=warnings
- run: cargo clippy --release --all --no-default-features -- --deny=warnings
- run: cargo build --release --all
- run: cargo build --release --all --no-default-features
- run: cargo test --release --all

8 changes: 0 additions & 8 deletions bors.toml

This file was deleted.

2 changes: 1 addition & 1 deletion refbox/src/sim_app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ impl<H: Hasher, I> Recipe<H, I> for SnapshotListener {

match state.stream.as_mut().unwrap().read(&mut buffer).await {
Ok(val) if val == TransmittedData::ENCODED_LEN => {}
Ok(val) if val == 0 => {
Ok(0) => {
error!("Sim: TCP connection closed, stopping");
state.stop = true;
return Some((Message::Stop, state));
Expand Down