demo, singular #6
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: Emscripten Build | |
on: | |
push: | |
branches: | |
- main | |
- test-branch | |
pull_request: | |
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: Configure the build | |
run: | | |
source emsdk/emsdk_env.sh | |
cd demo | |
make emscripten | |
shell: bash | |
- name: Set up SSH agent | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.REMOTE_SERVER_SSH_KEY }} | |
- name: Upload files to server | |
run: | | |
ssh-keyscan -H ${{ secrets.REMOTE_SERVER_ADDR }} >> ~/.ssh/known_hosts | |
scp -P ${{ secrets.REMOTE_SERVER_PORT }} -r demo ${{ secrets.REMOTE_SERVER_USER }}@${{ secrets.REMOTE_SERVER_ADDR }}:${{ secrets.REMOTE_SERVER_DIRECTORY }}/ | |