From f7fffd0f210eb41a19011a1e0e8d4d7dcb145c4d Mon Sep 17 00:00:00 2001 From: Crossedfall Date: Thu, 8 Jul 2021 12:00:33 -0500 Subject: [PATCH] Build action changes --- .github/workflows/auxmos.yml | 36 +++++++----------------------------- 1 file changed, 7 insertions(+), 29 deletions(-) diff --git a/.github/workflows/auxmos.yml b/.github/workflows/auxmos.yml index 770cb77..d2c378c 100644 --- a/.github/workflows/auxmos.yml +++ b/.github/workflows/auxmos.yml @@ -16,27 +16,16 @@ jobs: with: toolchain: stable target: i686-pc-windows-msvc - - name: Build Linda + - name: Build auxmos uses: actions-rs/cargo@v1 with: toolchain: stable command: build - args: --target i686-pc-windows-msvc --release - - name: Upload artifact (Linda) + args: --target i686-pc-windows-msvc --release --features "all_reaction_hooks" + - name: Upload artifact uses: actions/upload-artifact@v1 with: - name: linda_auxmos.dll - path: target/i686-pc-windows-msvc/release/auxmos.dll - - name: Build Putnamos - uses: actions-rs/cargo@v1 - with: - toolchain: stable - command: build - args: --target i686-pc-windows-msvc --release --features putnamos - - name: Upload artifact (Putnamos) - uses: actions/upload-artifact@v1 - with: - name: putnamos_auxmos.dll + name: auxmos.dll path: target/i686-pc-windows-msvc/release/auxmos.dll build-linux: runs-on: ubuntu-latest @@ -58,25 +47,14 @@ jobs: toolchain: stable command: check args: --target i686-unknown-linux-gnu - - name: Build Linda + - name: Build auxmos uses: actions-rs/cargo@v1 with: toolchain: stable command: build - args: --target i686-unknown-linux-gnu --release - - name: Upload artifact (Linda) + args: --target i686-unknown-linux-gnu --release --features "all_reaction_hooks" + - name: Upload artifact uses: actions/upload-artifact@v1 with: name: libauxmos.so path: target/i686-unknown-linux-gnu/release/libauxmos.so - - name: Build Putnamos - uses: actions-rs/cargo@v1 - with: - toolchain: stable - command: build - args: --target i686-unknown-linux-gnu --release - - name: Upload artifact (Putnamos) - uses: actions/upload-artifact@v1 - with: - name: putnamos_libauxmos.so - path: target/i686-unknown-linux-gnu/release/libauxmos.so \ No newline at end of file