Unverified Commit b2882336 by Dominic Hamon Committed by GitHub

conditional attempt #2

parent bc9ab68c
......@@ -31,8 +31,10 @@ jobs:
- uses: actions/checkout@v2
- name: install 32-bit
if: ${{ matrix.bits }} == "32"
run: sudo apt -y install g++-multilib libc6:i386
if: ${{ matrix.bits == "32" }}
run: |
sudo apt update
sudo apt -y install g++-multilib libc6:i386
- name: create build environment
run: cmake -E make_directory ${{ runner.workspace }}/_build
......
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