💥 Devendored all deps #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build server | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
env: | |
BUILD_TOOLS_PATH: C:\apps\build-tools\ | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- run: echo $env:BUILD_TOOLS_PATH | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
if: startsWith(matrix.os, 'windows') | |
- uses: actions/checkout@v4 | |
- name: Cache conan | |
uses: actions/cache@v3 | |
with: | |
key: conan-${{ matrix.os }}-${{ hashFiles('conanfile.py') }} | |
path: ~/.conan2/ | |
- name: Enable Developer Command Prompt | |
uses: ilammy/[email protected] | |
- name: Install dependencies (Ubuntu) | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-conan.sh" | sudo bash | |
sudo apt-get update | |
sudo apt-get -y install ninja-build | |
- name: Install dependencies (Windows) | |
if: startsWith(matrix.os, 'windows') | |
shell: cmd | |
run: git clone https://git.anotherfoxguy.com/AnotherFoxGuy/build-tools.git %BUILD_TOOLS_PATH% | |
- name: Configure (Ubuntu) | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
conan profile detect --force | |
echo "tools.system.package_manager:mode = install" > ~/.conan2/global.conf | |
echo "tools.system.package_manager:sudo = True" >> ~/.conan2/global.conf | |
conan remote add ror-conan https://git.anotherfoxguy.com/api/packages/rorbot/conan -f | |
conan install . -s build_type=Release -b missing -pr:b=default -c tools.cmake.cmaketoolchain:generator="Ninja" | |
cmake --preset conan-release | |
shell: bash | |
- name: Configure (Windows) | |
if: startsWith(matrix.os, 'windows') | |
run: | | |
conan remote add ror-conan https://git.anotherfoxguy.com/api/packages/rorbot/conan -f | |
conan install . -b missing -pr:b=tools/conan-profiles/vs-22-release-ninja -pr=tools/conan-profiles/vs-22-release-ninja | |
cmake --preset conan-release | |
shell: cmd | |
- name: Build | |
run: ninja | |
- name: Upload bin folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ror-server-${{ matrix.os }} | |
path: bin |