Skip to content

Commit

Permalink
[gh-actions] Correct spelling of macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ejurgensen committed Jun 5, 2024
1 parent 390c335 commit 2d59762
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS
name: macOS

on:
push:
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
run: brew install automake autoconf libtool pkg-config

- name: Install gperf, bison and flex
# Mac OS has ancient versions of bison and flex, so we need a newer from
# macOS has ancient versions of bison and flex, so we need a newer from
# Homebrew. The new versions are installed keg-only, so we must tell
# configure/make where to look. Adjusting $PATH doesn't work (maybe
# because make invokes the two via ylwrap), so instead symlink the two
Expand All @@ -50,13 +50,13 @@ jobs:
cd ..
- name: Install other dependencies
# libxml2 is included with Mac OS
# libxml2 is included with macOS
run: |
brew install libunistring confuse libplist libwebsockets libevent libgcrypt json-c protobuf-c libsodium gnutls pulseaudio openssl ffmpeg sqlite
- name: Configure
# We configure a non-privileged setup, since how to add a "owntone" system
# user in MacOS isn't clear to me (useradd etc. isn't available)
# user in macOS isn't clear to me (useradd etc. isn't available)
run: |
export CFLAGS="-I$(brew --prefix)/include -I$(brew --prefix sqlite)/include"
export LDFLAGS="-L$(brew --prefix)/lib -L$(brew --prefix sqlite)/lib"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos_12.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS 12
name: macOS 12

on:
workflow_dispatch:
Expand All @@ -14,7 +14,7 @@ jobs:
run: brew install automake autoconf libtool pkg-config

- name: Install gperf, bison and flex
# MacOS comes with an ancient bison, we need a newer version. Homebrew's
# macOS comes with an ancient bison, we need a newer version. Homebrew's
# bison and flex are keg-only, which means they are not symlinked into
# /usr/local because macOS already provides this software. Homebrew tells
# you to adjust the $PATH, but I couldn't make that work, and I think
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Configure
# We configure a non-privileged setup, since how to add a "owntone" system
# user in MacOS isn't clear to me (useradd etc. isn't available)
# user in macOS isn't clear to me (useradd etc. isn't available)
run: |
autoreconf -fi
./configure --prefix=$HOME/owntone_data/usr --sysconfdir=$HOME/owntone_data/etc --localstatedir=$HOME/owntone_data/var --enable-chromecast --with-pulseaudio
Expand Down

0 comments on commit 2d59762

Please sign in to comment.