From f4c72942676689c6e0000024f07281414f360fd4 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Fri, 15 Aug 2025 21:14:17 +0100 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 18 +++--------------- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d1742b..0adf48e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,7 +106,7 @@ jobs: submodules: recursive - name: Install build tools - run: choco install winflexbison mingw -y + run: choco install winflexbison -y shell: pwsh - name: Setup Python @@ -123,20 +123,8 @@ jobs: - name: Build with MinGW run: | - conan install . ` - -s compiler=gcc ` - -s compiler.version=13 ` - -s compiler.libcxx=libstdc++11 ` - -s arch=x86_64 ` - -s os=Windows ` - --build=missing - conan build . ` - -s compiler=gcc ` - -s compiler.version=13 ` - -s compiler.libcxx=libstdc++11 ` - -s arch=x86_64 ` - -s os=Windows ` - --build=missing + conan install . + conan build . shell: pwsh - name: Package diff --git a/CMakeLists.txt b/CMakeLists.txt index a742bed..90879b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ set_target_properties(argon PROPERTIES find_package(BDWgc REQUIRED) find_package(gmp REQUIRED) -target_compile_options(argon PRIVATE -O3 -Wall -Wextra -Wno-unused-function -s) +target_compile_options(argon PRIVATE -O3 -Wall -Wno-unused-function -s) if(NOT APPLE) target_link_options(argon PRIVATE -static) endif()