Skip to content

Commit

Permalink
aarch maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
liz3 committed Dec 9, 2023
1 parent fd3738b commit c3417ba
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/build-macos-aarch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build
on:
push:
branches:
- vim

jobs:
build-project:
name: Build Project
runs-on: macos-arm64
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: install deps
run: |
brew install llvm cmake
- name: Build Project
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: ledit_darwin_aarch64
path: |
build/ledit
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build
on:
push:
branches:
- vim
- master

jobs:
build-project:
Expand Down

0 comments on commit c3417ba

Please sign in to comment.