Skip to content

Commit

Permalink
More gh actions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
haata committed Oct 12, 2023
1 parent 72d88da commit 947cfb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ env:
deb_packages: >-
libreadline-dev
libwxgtk3.0-gtk3-dev
wx-common
jobs:
linux:
Expand All @@ -15,6 +16,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -36,6 +38,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
fetch-depth: 0
- name: Install dependencies
run: |
brew update
Expand All @@ -57,6 +60,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
fetch-depth: 0
- uses: numworks/setup-msys2@v1
with:
msystem: MSYS32
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ endif
#
ifeq ($(OS),Darwin)
COMMON_SRCS+=PosixSerialPort.cpp OSXPortFactory.cpp
COMMON_CXXFLAGS=-arch x86_64 -mmacosx-version-min=10.9
COMMON_LDFLAGS=-arch x86_64 -mmacosx-version-min=10.9
COMMON_CXXFLAGS=-arch x86_64 -mmacosx-version-min=11 -std=c++14
COMMON_LDFLAGS=-arch x86_64 -mmacosx-version-min=11
APP=BOSSA.app
DMG=bossa-$(VERSION).dmg
VOLUME=BOSSA
Expand Down

0 comments on commit 947cfb6

Please sign in to comment.