diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 11b07726..e5a41314 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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}}