Skip to content

Commit

Permalink
try to build the runtime on macOS for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Jan 16, 2024
1 parent 0a8e287 commit dab53ed
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-majestic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,37 @@ jobs:
/usr/local/lib/libpgf*
/usr/local/include/pgf
macos-runtime:
name: Runtime (macOS)
runs-on: macos-latest-xlarge

steps:
- uses: actions/checkout@v3

- name: Install build tools
run: |
brew install \
autoconf \
automake \
libtool \
- name: Build runtime
working-directory: ./src/runtime/c
run: |
glibtoolize
autoreconf -i
./configure
make
sudo make install
- name: Upload artifact
uses: actions/upload-artifact@master
with:
name: libpgf-macos
path: |
/usr/local/lib/libpgf*
/usr/local/include/pgf
macos-haskell:
name: Haskell (macOS)
runs-on: macOS-11
Expand Down

0 comments on commit dab53ed

Please sign in to comment.