Skip to content

Commit

Permalink
perfect build
Browse files Browse the repository at this point in the history
  • Loading branch information
QuincySx committed Jun 18, 2024
1 parent 99baec3 commit dc634e3
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build-MacOS

on: workflow_dispatch

jobs:
build-macos:
name: macOS
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
buildType: [Release]
# macos-13 Intel
# macos-14 Apple Silicon
os: [macOS-14, macos-13]
env:
BUILDTYPE: ${{ matrix.buildType }}
steps:
- name: Install automake
run: brew install automake autoconf libtool texinfo
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build it
run: make VERBOSE=1
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts-${{ matrix.buildType }}-${{ matrix.os }}
path: |
./build/tjs
./build/txiki

0 comments on commit dc634e3

Please sign in to comment.