switch library install order in CI

This commit is contained in:
Martin Michelsen
2022-05-31 17:21:40 -07:00
parent 85d054fc3a
commit e29e349a84
+8 -8
View File
@@ -29,6 +29,14 @@ jobs:
if: ${{ matrix.os == 'macos-latest' }}
run: brew install libevent
- name: Install phosg
run: |
git clone https://github.com/fuzziqersoftware/phosg.git
cd phosg
cmake .
make
sudo make install
- name: Install resource_file
if: ${{ matrix.with_resource_file == 'true' }}
run: |
@@ -38,14 +46,6 @@ jobs:
make
sudo make install
- name: Install phosg
run: |
git clone https://github.com/fuzziqersoftware/phosg.git
cd phosg
cmake .
make
sudo make install
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}