From c14ceb2a82ea372fb6cd33e367f20e028be2fc02 Mon Sep 17 00:00:00 2001 From: VHSgunzo Date: Thu, 21 Nov 2024 12:26:06 +0300 Subject: [PATCH] Update CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4d8373..12c78ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Install deps run: | - sudo bash -c 'apt update && apt install upx binutils gcc-mingw-w64 musl-tools -y' + sudo bash -c 'apt update && apt install upx binutils musl-tools -y' rustup component add rust-src --toolchain nightly cargo install cross @@ -55,7 +55,7 @@ jobs: - name: Build x86_64 windows run: | cargo clean - cargo build --release --target x86_64-pc-windows-gnu + cross build --release --target x86_64-pc-windows-gnu mv target/x86_64-pc-windows-gnu/release/ulexec.exe ulexec-x86_64.exe upx --force -9 --best ulexec-x86_64.exe -o ulexec-x86_64-upx.exe