Skip to content

Update to latest fmt #107

Update to latest fmt

Update to latest fmt #107

Workflow file for this run

name: windows
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-2019]
platform: [Win32, x64]
build_type: [Debug, Release]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Debug
working-directory: ${{github.workspace}}
run: |
cmake --help
- name: Install python dependencies
working-directory: ${{github.workspace}}
run: |
python.exe -m pip install requests
- name: Install cpp dependencies
working-directory: ${{github.workspace}}
run: |
python.exe ${{github.workspace}}\tools\windows.py install --compiler ${{matrix.os}} --platform ${{matrix.platform}}
- name: Configure
working-directory: ${{github.workspace}}
run: |
python.exe ${{github.workspace}}\tools\windows.py cmake --compiler ${{matrix.os}} --platform ${{matrix.platform}}
- name: Build
shell: bash
working-directory: ${{github.workspace}}/build/ride
run: cmake --build . --config ${{matrix.build_type}}