v0.1.0 #82
Workflow file for this run
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: Wasm | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'binocle-c/**' | |
- 'assets/**' | |
- '.github/workflows/wasm.yml' | |
- 'CMakeLists.txt' | |
- 'CMakeOptions.txt' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'binocle-c/**' | |
- 'assets/**' | |
- '.github/workflows/wasm.yml' | |
- 'CMakeLists.txt' | |
- 'CMakeOptions.txt' | |
release: | |
types: [published] | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
# You can convert this to a matrix build if you need cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: macos-latest | |
env: | |
RELEASE_NAME: binocle-player-wasm | |
BUILD_TYPE: Release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup emsdk | |
uses: mymindstorm/setup-emsdk@v12 | |
with: | |
version: 3.1.35 | |
actions-cache-folder: 'emsdk-cache' | |
- name: Setup Release Version | |
run: | | |
echo "RELEASE_NAME=binocle-player-${{ github.event.release.tag_name }}-wasm" >> $GITHUB_ENV | |
shell: bash | |
if: github.event_name == 'release' && github.event.action == 'published' | |
- name: Setup Environment | |
run: | | |
mkdir ${{github.workspace}}/build | |
cd ${{github.workspace}}/build | |
mkdir ${{ env.RELEASE_NAME }} | |
cd ../.. | |
- name: Install system dependencies | |
run: brew install doxygen sphinx-doc graphviz | |
- name: Configure CMake | |
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | |
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | |
run: | | |
source emsdk_env.sh | |
emcmake cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBINOCLE_HTTP=1 | |
- name: Build | |
shell: bash | |
working-directory: ${{github.workspace}}/build | |
# Build your program with the given configuration | |
run: | | |
source emsdk_env.sh | |
make -j8 | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
# Execute tests defined by the CMake configuration. | |
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
run: ctest -C ${{env.BUILD_TYPE}} | |
- name: Generate artefacts | |
run: | | |
cp -Rpv ./build/src/* ./build/${{ env.RELEASE_NAME }} | |
cd build | |
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }} | |
- name: Upload artefacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.RELEASE_NAME }}.tar.gz | |
path: ./build/${{ env.RELEASE_NAME }}.tar.gz | |
- name: Upload artefact to release | |
uses: actions/upload-release-asset@v1.0.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./build/${{ env.RELEASE_NAME }}.tar.gz | |
asset_name: ${{ env.RELEASE_NAME }}.tar.gz | |
asset_content_type: application/gzip | |
if: github.event_name == 'release' && github.event.action == 'published' |