-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add OSX Travis configuration #43
Comments
I had recently been working on using CI, even though this integration is still unfinished. I have found that an error occurs at the end of the liking during the test. StatusLinking error: OSX - Github actionsname: macOS
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: Install
run: brew install ninja zig --HEAD
- name: Get specific version CMake, v3.19.2
uses: lukka/[email protected]
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.2
dir: '${{ github.workspace }}/build/'
- name: Build & Tests
run: |
QTDIR="$GITHUB_WORKSPACE/build/Qt/5.15.2/clang_64" && \
PATH="${QTDIR}/bin:$PATH" && LDFLAGS=-L${QTDIR}/lib && \
CPPFLAGS=-I${QTDIR}/include && \
zig build Hello -Drelease-safe -Dtarget=native-native |
Fixed! Finally works. |
As pointed out in #42 DOtherSide build just fine on OSX. We should updated the .travis file for adding a new OSX configuration.
The text was updated successfully, but these errors were encountered: