Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
esarver committed Aug 15, 2024
1 parent c41840b commit a58d411
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build

on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
push:
tags:
- "*"

jobs:
build:
strategy:
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{matrix.os}}-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure
run: |
mkdir build
cd build
cmake ..
- name: Build
run: cmake --build . --config Release
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{matrix.os}}-build
path: |
build/out/visa.*

0 comments on commit a58d411

Please sign in to comment.