Skip to content

Commit

Permalink
Update binary-build.yml fixing order
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos authored Jan 13, 2024
1 parent acf51f4 commit 92bc4c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
run: |
pip install pip --upgrade
pip install numpy lit
- name: Add git submodules for Linux only (not needed for non-testing)
if: matrix.os == 'ubuntu-20.04'
run: git submodule update --init

- name: Configure CMake for linux
if: matrix.os == 'ubuntu-20.04'
Expand All @@ -54,10 +58,6 @@ jobs:
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=ON -DSTATICCOMPILE=${{ matrix.staticcompile }}

- name: Add git submodules for Linux only (not needed for non-testing)
if: matrix.os == 'ubuntu-20.04'
run: git submodule update --init

- name: Configure CMake for non-linux
if: matrix.os != 'ubuntu-20.04'
Expand Down

0 comments on commit 92bc4c7

Please sign in to comment.