-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: absolute path inside dylib (fix #123)
add x86_64 dylib build update Makefile test dylib works fix main reformat add rpath option add rpath comment add more comment remove un-necessary change readme make simple add or typo add or for windows restore readme untar restore disable test separate test change name tidyup test fix compile option
- Loading branch information
1 parent
2c7ec3a
commit 9cd3cf5
Showing
5 changed files
with
101 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Mac Build Test CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/** | ||
paths-ignore: | ||
- README.md | ||
tags: | ||
- "v*.*.*" | ||
pull_request: | ||
paths-ignore: | ||
- README.md | ||
|
||
jobs: | ||
mac-test: | ||
runs-on: macos-11 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Add target x86_64-apple-darwin | ||
run: rustup target add x86_64-apple-darwin | ||
|
||
- name: Build play-cpp-sdk library | ||
run: ./checkmac.sh && cargo build --package play-cpp-sdk --release --target x86_64-apple-darwin | ||
|
||
- name: Build demo project | ||
working-directory: demo | ||
run: make x86_64_build_test | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters