Skip to content

Commit

Permalink
[New] build: CI: GitHub: Add macOS 14 runner.
Browse files Browse the repository at this point in the history
git-svn-id: https://source.openmpt.org/svn/openmpt/trunk/OpenMPT@20256 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Mar 6, 2024
1 parent 03dac64 commit 629eb72
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/macOS-14-Makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: macOS 14 Makefile

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
build:

runs-on: macos-14

steps:
- uses: actions/checkout@v4
- name: install dependencies
run: brew update && brew upgrade && brew install p7zip help2man doxygen autoconf-archive mpg123 libogg libvorbis portaudio flac libsndfile sdl2
- name: setup parallel make
run: echo "MAKEFLAGS=-j$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
- name: make
run: make STRICT=1 FORCE_DEPS=1
- name: make check
run: make STRICT=1 FORCE_DEPS=1 check

0 comments on commit 629eb72

Please sign in to comment.