-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (40 loc) · 1.2 KB
/
emscripten-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
- 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: |
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 demos ${{ secrets.REMOTE_SERVER_USER }}@${{ secrets.REMOTE_SERVER_ADDR }}:${{ secrets.REMOTE_SERVER_DIRECTORY }}/