Skip to content

Commit

Permalink
Add GitHub Actions build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowChemistryPublishing committed Apr 3, 2024
1 parent e70234a commit d1cd6a4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build
on: [push]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: mingw-w64-x86_64-arm-none-eabi-toolchain
- uses: jwlawson/[email protected]
- name: Configure
run: |
cmake -Bbuild .
- name: Build
run: |
cmake --build build --config Debug --target all

0 comments on commit d1cd6a4

Please sign in to comment.