From 8e2e5f34151b1185bced67c1bd17c6c870571e79 Mon Sep 17 00:00:00 2001 From: fabolous005 Date: Wed, 3 Apr 2024 17:55:30 +0200 Subject: [PATCH] revert changes to gitea workflows --- .gitea/workflows/build.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e6eaa1f..0a89c97 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,7 +1,7 @@ on: [push] name: CI jobs: - build_and_test: + build: name: Rust project runs-on: ubuntu-latest steps: @@ -13,3 +13,15 @@ jobs: with: command: build args: --release + build_custom_pieces: + name: Rust project + 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 --features "custom_pieces"