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 4371bbd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ env:
deb_packages: >-
libreadline-dev
libwxgtk3.0-gtk3-dev
wx-common
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
fetch-tags: true
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -35,7 +37,8 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
fetch-tags: true
- name: Install dependencies
run: |
brew update
Expand All @@ -56,7 +59,8 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
fetch-tags: true
- 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 4371bbd

Please sign in to comment.