Unverified Commit 3ac83e22 by Dominic Hamon Committed by GitHub

i've lost count. another try.

parent 4cfe99a7
...@@ -19,7 +19,7 @@ jobs: ...@@ -19,7 +19,7 @@ jobs:
os: [ubuntu-latest, ubuntu-16.04, ubuntu-20.04, macos-latest] os: [ubuntu-latest, ubuntu-16.04, ubuntu-20.04, macos-latest]
build_type: ['Release', 'Debug'] build_type: ['Release', 'Debug']
compiler: [g++, clang++] compiler: [g++, clang++]
bits: ['32', '64'] bits: [32, 64]
include: include:
- displayTargetName: windows-latest-release - displayTargetName: windows-latest-release
os: windows-latest os: windows-latest
...@@ -30,7 +30,7 @@ jobs: ...@@ -30,7 +30,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- if: matrix.bits == '32' - if: matrix.bits == 32
name: install 32-bit name: install 32-bit
run: sudo apt -y install g++-multilib libc6-i386 run: sudo apt -y install g++-multilib libc6-i386
...@@ -40,7 +40,7 @@ jobs: ...@@ -40,7 +40,7 @@ jobs:
- name: configure cmake - name: configure cmake
env: env:
CXX: ${{ matrix.compiler }} CXX: ${{ matrix.compiler }}
BUILD_32_BITS: ${{ matrix.bits }} == "32" BUILD_32_BITS: ${{ matrix.bits }} == 32
shell: bash shell: bash
working-directory: ${{ runner.workspace }}/_build working-directory: ${{ runner.workspace }}/_build
run: > run: >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment