From 2de853435b2b4b72dffc8f54b082f0742366300a Mon Sep 17 00:00:00 2001 From: jfh Date: Mon, 8 Nov 2021 17:08:43 +0200 Subject: [PATCH] Add a check for freeBSD. --- .github/workflows/ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c19d9b26c..7e54f878e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -115,6 +115,16 @@ jobs: command: check args: --target wasm32-wasi --features freeze-stdlib + - uses: actions-rs/toolchain@v1 + with: + target: x86_64-unknown-freebsd + + - name: Check compilation for freeBSD + uses: actions-rs/cargo@v1 + with: + command: check + args: --target x86_64-unknown-freebsd + - name: Prepare repository for redox compilation run: bash scripts/redox/uncomment-cargo.sh - name: Check compilation for Redox