Unverified Commit 534df7b5 by Dominic Hamon Committed by GitHub

how's this?

parent 3ac83e22
...@@ -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,8 +30,8 @@ jobs: ...@@ -30,8 +30,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- if: matrix.bits == 32 - name: install 32-bit
name: install 32-bit if: matrix.bits == '32'
run: sudo apt -y install g++-multilib libc6-i386 run: sudo apt -y install g++-multilib libc6-i386
- name: create build environment - name: create build environment
...@@ -68,10 +68,10 @@ jobs: ...@@ -68,10 +68,10 @@ jobs:
build_type: ['Release', 'Debug'] build_type: ['Release', 'Debug']
compiler: [g++-4.8, clang++-3.6] compiler: [g++-4.8, clang++-3.6]
include: include:
- compiler: g++-6 - compiler: 'g++-6'
build_type: 'Debug' build_type: 'Debug'
run_tests: true run_tests: true
- compiler: g++-6 - compiler: 'g++-6'
build_type: 'Release' build_type: 'Release'
run_tests: true run_tests: true
container: ubuntu:14.04 container: ubuntu:14.04
...@@ -83,7 +83,7 @@ jobs: ...@@ -83,7 +83,7 @@ jobs:
sudo apt update sudo apt update
sudo apt -y install clang-3.6 cmake3 g++-4.8 git sudo apt -y install clang-3.6 cmake3 g++-4.8 git
- if: matrix.compiler == g++-6 - if: matrix.compiler == 'g++-6'
name: install other bits name: install other bits
run: | run: |
sudo apt -y install software-properties-common sudo apt -y install software-properties-common
......
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