-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,665 changed files
with
161,909 additions
and
122,661 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,8 @@ jobs: | |
run: doxygen | ||
|
||
- name: Upload documentation | ||
working-directory: ${{ github.workspace }}/docs/html | ||
run: tar -czf - * | sshpass -p "${{ secrets.EMSCRIPTEN_DEPLOY_PASSWORD }}" ssh -o StrictHostKeyChecking=no [email protected] "rm -rf docs && mkdir docs && cd docs && tar xzvf -" | ||
working-directory: ${{ github.workspace }}/docs | ||
run: | | ||
sshpass -p "${{ secrets.EMSCRIPTEN_DEPLOY_PASSWORD }}" sftp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "${{ secrets.EMSCRIPTEN_DEPLOY_REMOTE }}" << EOF | ||
put -r html public/www/docs | ||
EOF |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,28 @@ jobs: | |
- name: Install Emscripten | ||
uses: mymindstorm/setup-emsdk@v11 | ||
with: | ||
version: 3.1.46 | ||
version: 3.1.60 | ||
|
||
- name: Configure CMake | ||
run: emcmake cmake -B ${{ github.workspace }}/build -DSL_BUILD_WAI=OFF -DSL_BUILD_WITH_OPENSSL=OFF -DSL_DOWNLOAD_DATA=OFF -DCMAKE_BUILD_TYPE=Release | ||
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-SLProject -j $(nproc) | ||
run: cmake --build ${{ github.workspace }}/build --target app-demo -j $(nproc) | ||
|
||
- name: Upload | ||
working-directory: ${{ github.workspace }}/build | ||
run: sshpass -p "${{ secrets.EMSCRIPTEN_DEPLOY_PASSWORD }}" scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null app-Demo-SLProject.* [email protected]:. | ||
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 |
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 |
---|---|---|
|
@@ -92,4 +92,5 @@ Tester | |
/externals/prebuild_scripts/eigen | ||
/externals/prebuild_scripts/openssl | ||
|
||
docs/html | ||
docs/html | ||
.clangd |
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
Oops, something went wrong.