From c57ebc592c6b70554008356ad0e5fc7f10a7c008 Mon Sep 17 00:00:00 2001 From: fabolous005 Date: Thu, 4 Apr 2024 06:05:31 +0200 Subject: [PATCH] add new workflows for new features --- .gitea/workflows/build.yaml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 121c90b..12ed9c5 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -24,4 +24,28 @@ jobs: - uses: actions-rs/cargo@v1 with: command: build - args: --release --features "custom_pieces" + args: --release --no-default-features --features "custom_pieces" + build_cmdargs: + name: Saltfish [cmdargs] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --no-default-features --features "cmdargs" + build_cmdargs_custom_pieces: + name: Saltfish [cmdargs custom_pieces] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --no-default-features --features "cmdargs custom_pieces"