-
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.
Merge pull request #11 from Moros1138/develop
v1.7
- Loading branch information
Showing
8 changed files
with
1,412 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Emscripten Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Set up Python (required for Emscripten) | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install Emscripten SDK | ||
run: | | ||
git clone https://github.com/emscripten-core/emsdk.git | ||
cd emsdk | ||
./emsdk install latest | ||
./emsdk activate latest | ||
source ./emsdk_env.sh | ||
shell: bash | ||
|
||
- name: Build with Emscripten | ||
run: | | ||
source emsdk/emsdk_env.sh | ||
cd demo | ||
make emscripten | ||
shell: bash | ||
|
||
|
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,70 @@ | ||
name: Emscripten Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Set up Python (required for Emscripten) | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install Emscripten SDK | ||
run: | | ||
git clone https://github.com/emscripten-core/emsdk.git | ||
cd emsdk | ||
./emsdk install latest | ||
./emsdk activate latest | ||
source ./emsdk_env.sh | ||
shell: bash | ||
|
||
- name: Build with Emscripten | ||
run: | | ||
source emsdk/emsdk_env.sh | ||
cd demo | ||
make emscripten | ||
shell: bash | ||
|
||
- name: Deploy Main Demo | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.REMOTE_SERVER_ADDR }} | ||
username: ${{ secrets.REMOTE_SERVER_USER }} | ||
key: ${{ secrets.REMOTE_SERVER_SSH_KEY }} | ||
port: ${{ secrets.REMOTE_SERVER_PORT }} | ||
source: "demo/demo.html,demo/demo.js,demo/demo.wasm,demo/demo.data" | ||
target: ${{ secrets.REMOTE_SERVER_DIRECTORY }} | ||
strip_components: 1 | ||
|
||
- name: Deploy Waveform Demo | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.REMOTE_SERVER_ADDR }} | ||
username: ${{ secrets.REMOTE_SERVER_USER }} | ||
key: ${{ secrets.REMOTE_SERVER_SSH_KEY }} | ||
port: ${{ secrets.REMOTE_SERVER_PORT }} | ||
source: "demo/demo_waveform.html,demo/demo_waveform.js,demo/demo_waveform.wasm,demo/demo_waveform.data" | ||
target: ${{ secrets.REMOTE_SERVER_DIRECTORY }} | ||
strip_components: 1 | ||
|
||
- name: Deploy Synthesis Demo | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.REMOTE_SERVER_ADDR }} | ||
username: ${{ secrets.REMOTE_SERVER_USER }} | ||
key: ${{ secrets.REMOTE_SERVER_SSH_KEY }} | ||
port: ${{ secrets.REMOTE_SERVER_PORT }} | ||
source: "demo/demo_synthesis.html,demo/demo_synthesis.js,demo/demo_synthesis.wasm,demo/demo_synthesis.data" | ||
target: ${{ secrets.REMOTE_SERVER_DIRECTORY }} | ||
strip_components: 1 |
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
Oops, something went wrong.