Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reintroduce wasm with qt5 #2315

Merged
merged 1 commit into from
Nov 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 44 additions & 9 deletions .github/workflows/wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,49 @@ jobs:
wasm:
runs-on: ubuntu-20.04

steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1

- name: Install Qt
shell: bash
run: |
python3 -m pip install aqtinstall
python3 -m aqt install --outputdir /opt 5.15.2 linux desktop wasm_32 -m qtcharts

- name: Install python dependencies
shell: bash
run: |
pip install -r requirements.txt

- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v7
with:
version: 1.39.8

- name: Compiling
shell: bash
run: |
export PATH=/opt/5.15.2/wasm_32/bin:$PATH
./scripts/wasm_compile.sh

- name: Uploading
uses: actions/upload-artifact@v1
with:
name: WebAssembly Build
path: wasm

wasmQt6:
name: Wasm Qt6
runs-on: ubuntu-20.04

steps:
- name: Clone repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -56,11 +99,6 @@ jobs:
export PATH=/opt/6.2.1/wasm_32/bin:/opt/6.2.1/gcc_64/bin:$PATH
./scripts/wasm_compile.sh

- name: Uploading
uses: actions/upload-artifact@v1
with:
name: WebAssembly Build
path: wasm
inspector:
runs-on: ubuntu-20.04
steps:
Expand All @@ -86,7 +124,7 @@ jobs:

ghPages:
runs-on: ubuntu-20.04
needs: [wasm,inspector]
needs: [wasm, inspector]
name: Publish Wasm on Github Pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -116,6 +154,3 @@ jobs:
email: [email protected]
# Where static files are.
build_dir: _site