fix doc error: url error #806
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
name: macOS CI | |
on: | |
push: | |
# branches: [ develop ] | |
pull_request: | |
# branches: [ develop ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build external | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
. setup.env | |
. build_player.sh | |
build_mac | |
# - name: build SDK and demo | |
# run: | | |
# cd platform/Apple/demo/macOS | |
# ./Genxcodeproj.sh | |
# cd CicadaDemo | |
# xcodebuild -workspace CicadaDemo.xcworkspace -scheme install ONLY_ACTIVE_ARCH=NO -configuration Release | |
# xcodebuild -workspace CicadaDemo.xcworkspace -scheme CicadaDemo ONLY_ACTIVE_ARCH=NO -configuration Release VALID_ARCHS="x86_64" | |
# - name: build tests | |
# run: | | |
# brew install sdl2 | |
# cd $GITHUB_WORKSPACE | |
# mkdir build | |
# cd build | |
# cmake -DCODE_COVERAGE=ON -DTRAVIS=ON -DUSEASAN=ON -DCMAKE_BUILD_TYPE=Debug ../ | |
# cmake --build . --config Debug -j8 | |
# - name: unit test | |
# run: | | |
# cd build/mediaPlayer/tests/ | |
# ctest -j8 --output-on-failure | |
# cd ../../framework/tests/ | |
# ctest -j8 --output-on-failure | |
# cd external/ | |
# ./build_external.sh macOS | |
# - name: build macOS demo | |
# run: | | |
# cd platform/Apple/demo/macOS/ | |
# ./Genxcodeproj.sh | |
# cd CicadaDemo | |
# xcodebuild -workspace CicadaDemo.xcworkspace -scheme CicadaDemo ONLY_ACTIVE_ARCH=NO -configuration Release |