Skip to content

Commit

Permalink
C
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherFoxGuy committed Feb 6, 2025
1 parent 2632d65 commit 34ffde2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,16 @@ jobs:
modules: qt5compat qtpositioning qtwebchannel qtwebengine qtwebview
dir: "${{ github.workspace }}/qt/"

- name: Add conan remote
run: conan remote add ror-conan https://git.anotherfoxguy.com/api/packages/rorbot/conan -f
- name: Configure (Windows)
if: startsWith(matrix.os, 'windows')
run: |
conan remote add ror-conan https://git.anotherfoxguy.com/api/packages/rorbot/conan -f
cmake . -GNinja -DCMAKE_INSTALL_PREFIX=redist -DCMAKE_BUILD_TYPE=Release -Bbuild -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES="cmake/conan_provider.cmake"
- name: Configure
run: cmake . -GNinja -DCMAKE_INSTALL_PREFIX=redist -DCMAKE_BUILD_TYPE=Release -Bbuild -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES="cmake/conan_provider.cmake"
- name: Configure (Ubuntu)
if: startsWith(matrix.os, 'ubuntu')
run: |
cmake . -GNinja -DCMAKE_INSTALL_PREFIX=redist -DCMAKE_BUILD_TYPE=Release -Bbuild
- name: Install
run: |
Expand Down

0 comments on commit 34ffde2

Please sign in to comment.