Deploy emscripten on develop #168
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: Deploy Emscripten | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Emscripten | |
uses: mymindstorm/setup-emsdk@v11 | |
with: | |
version: 3.1.60 | |
- name: Configure CMake | |
run: | | |
emcmake cmake \ | |
-B ${{ github.workspace }}/build \ | |
-DSL_BUILD_WAI=OFF \ | |
-DSL_BUILD_WITH_OPENSSL=OFF \ | |
-DSL_BUILD_WITH_MEDIAPIPE=OFF \ | |
-DSL_DOWNLOAD_DATA=OFF \ | |
-DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build ${{ github.workspace }}/build --target app-demo -j $(nproc) | |
- name: Create Zip Folder | |
working-directory: ${{ github.workspace }} | |
run: | | |
mkdir emscripten_build | |
cp build/app-demo.html emscripten_build | |
cp build/app-demo.js emscripten_build | |
cp build/app-demo.wasm emscripten_build | |
cp build/app-demo.worker.js emscripten_build | |
- name: Archive emscripten_build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: emscripten_build | |
path: ${{ github.workspace }}/emscripten_build | |
# - name: Upload | |
# working-directory: ${{ github.workspace }}/build | |
# run: | | |
# sshpass -p "${{ secrets.EMSCRIPTEN_DEPLOY_PASSWORD }}" sftp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "${{ secrets.EMSCRIPTEN_DEPLOY_REMOTE }}" << EOF | |
# put app-demo.html public/www/app-demo.html | |
# put app-demo.js public/www/app-demo.js | |
# put app-demo.wasm public/www/app-demo.wasm | |
# put app-demo.worker.js public/www/app-demo.worker.js | |
# put app-demo.ww.js public/www/app-demo.ww.js | |
# EOF |