Compare commits

...

1 Commits

Author SHA1 Message Date
William Bell
dd750ab164 fix release.yml 2025-08-15 20:26:54 +01:00

View File

@@ -23,19 +23,18 @@ jobs:
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: brew install flex bison run: brew install flex bison
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
# Windows # Windows
- name: Install build tools (Windows) - name: Install build tools (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'
run: | run: |
choco install winflexbison mingw -y choco install winflexbison mingw -y
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++
shell: pwsh shell: pwsh
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Python (needed for Conan) - name: Setup Python (needed for Conan)
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
@@ -75,8 +74,20 @@ jobs:
- name: Install dependencies and build (Windows) - name: Install dependencies and build (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'
run: | run: |
conan install . --build=missing conan install . \
conan build . --config Release -s compiler=gcc \
-s compiler.version=13 \
-s compiler.libcxx=libstdc++11 \
-s arch=x86_64 \
-s os=Windows \
--build=missing
conan install . \
-s compiler=gcc \
-s compiler.version=13 \
-s compiler.libcxx=libstdc++11 \
-s arch=x86_64 \
-s os=Windows \
--build=missing
shell: pwsh shell: pwsh
- name: Determine if prerelease (Linux/macOS) - name: Determine if prerelease (Linux/macOS)