Skip to content

Commit

Permalink
add v2 github actions build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed Sep 23, 2023
1 parent f2fffb2 commit 0643ccd
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build and Test

on:
push:
branches:
- v2/main

jobs:
build:
runs-on: macos-latest
strategy:
matrix:
arch: [arm64] # Specify the desired architectures here

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Build libpksav
run: |
cd libpksav/
cmake .
make
- name: Build Project
run: |
make all
- name: Publish Build Artifacts
uses: actions/upload-artifact@v3
with:
name: pokeromtrader.out # Specify a name for your artifacts
path: src/ # Specify the directory containing your build artifacts

- name: Clean Up
run: |
make clean

0 comments on commit 0643ccd

Please sign in to comment.