This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
Merge pull request #177 from smoogipoo/process-user-totals-config #183
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_linux: | |
name: Build on linux systems | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install libmysqlclient-dev libcurl4-openssl-dev | |
- name: CMake | |
run: cmake . | |
- name: Build | |
run: make -j | |
build_macos: | |
name: Build on macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: brew install mysql-connector-c | |
- name: CMake | |
run: cmake . | |
- name: Build | |
run: make -j | |
build_windows: | |
name: Build on Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: CMake | |
run: cmake . | |
- name: Build | |
run: msbuild /v:m /p:Configuration=Release osu-performance.sln |