Skip to content

Commit

Permalink
fix: macos compatibility (#111)
Browse files Browse the repository at this point in the history
Signed-off-by: Tronje Krop <[email protected]>
  • Loading branch information
tkrop committed Oct 30, 2024
1 parent f0ac228 commit 0409444
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
28 changes: 25 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,32 @@ jobs:
version: 9

- name: Run Bash compatibility tests
run: |-
make --version;
make --file=config/Makefile.base --trace test-self;
macos:
runs-on: macos-latest
steps:
# - name: Set up Docker
# uses: crazy-max/ghaction-setup-docker@v3

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.2

- name: Checkout code
uses: actions/checkout@v4

- name: Run MacOS compatibility tests
env:
BASH_COMPAT: 3.2
run: |-
make --version
make --file=config/Makefile.base --trace test-self
make --file=config/Makefile.base test-self
macos:
macos-brew:
runs-on: macos-latest
steps:
# - name: Set up Docker
Expand All @@ -87,7 +108,8 @@ jobs:
brew install make;
export PATH="/opt/homebrew/opt/make/libexec/gnubin:${PATH}";
make --version;
make --file=config/Makefile.base --trace test-self
make --file=config/Makefile.base --trace test-self;
release:
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions config/Makefile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
SHELL := /bin/bash

# Setup variables for special purposes.
NULL :=
COMMA := ,
SPACE := $(NULL) $(NULL)
TAB := $(NULL) $(NULL)
SPACE := $(SPACE) $(SPACE)
TAB := $(TAB) $(TAB)
define NEWLINE


Expand Down Expand Up @@ -46,7 +45,6 @@ endif

# System depdendent helper functions.
ifeq ("$(shell uname)","Linux")
MAKESHELL := PATH=$(PATH) /bin/bash
else ifeq ($(shell uname),Darwin)
path-setup = $(shell \
if [ "$(1)" == "opt" ]; then \
Expand All @@ -62,7 +60,9 @@ else ifeq ($(shell uname),Darwin)
export PATH := $(call path-setup,opt,gsed,sed,$(PATH))
export PATH := $(call path-setup,opt,make,make,$(PATH))
# Ensure export of path to $(shell ...) in gmake 3.81.
MAKESHELL := PATH=$(PATH) /bin/bash
ifeq (3.81,$(MAKE_VERSION))
export SHELL := PATH="$(PATH)" $(shell brew --prefix)/bin/bash
endif
else
$(call cerror,unsupported operating system [$(shell uname --all)])
endif
Expand Down

0 comments on commit 0409444

Please sign in to comment.