Skip to content

fix odin generator coding style #269

fix odin generator coding style

fix odin generator coding style #269

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python3 fips build win64-vstudio-debug
- name: build release
run: python3 fips build win64-vstudio-release
- name: test
run: python3 fips run_tests win64-vstudio-release
mac:
runs-on: macos-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python3 fips build osx-ninja-debug
- name: build release
run: python3 fips build osx-ninja-release
- name: test
run: python3 fips run_tests osx-ninja-release
linux:
runs-on: ubuntu-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python fips build linux-ninja-debug
- name: build release
run: python fips build linux-ninja-release
- name: test
run: python3 fips run_tests linux-ninja-release