this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added wasm stub to CI

nesbox 6a563e83 1a1a3350

+14 -12
+11 -11
.github/workflows/build.yml
··· 550 550 name: "tic80-android" 551 551 path: build/android/tic80.apk 552 552 553 - # === Web Assembly === 554 - wasm: 553 + # === HTML === 554 + html: 555 555 runs-on: ubuntu-latest 556 556 557 557 steps: ··· 578 578 - name: Deploy 579 579 uses: actions/upload-artifact@v2 580 580 with: 581 - name: "tic80-wasm" 581 + name: "tic80-html" 582 582 path: | 583 583 build/bin/tic80.js 584 584 build/bin/tic80.wasm ··· 601 601 - name: Deploy stubs 602 602 uses: actions/upload-artifact@v2 603 603 with: 604 - name: "tic80-wasm-stub" 604 + name: "tic80-html-stub" 605 605 path: | 606 606 build/bin/tic80*.js 607 607 build/bin/tic80*.wasm ··· 609 609 610 610 # === Export === 611 611 export: 612 - needs: [winxp, windows, linux, rpi, macos, wasm] 612 + needs: [winxp, windows, linux, rpi, macos, html] 613 613 runs-on: ubuntu-latest 614 614 615 615 steps: ··· 643 643 name: tic80-macos 644 644 path: macdir 645 645 646 - - name: Download WASM artifact 646 + - name: Download HTML artifact 647 647 uses: actions/download-artifact@v2 648 648 with: 649 - name: tic80-wasm 649 + name: tic80-html 650 650 651 651 - name: Rename 652 652 run: | ··· 676 676 runs-on: ubuntu-latest 677 677 strategy: 678 678 matrix: 679 - script: [lua, moon, fennel, ruby, js, wren, squirrel] 679 + script: [lua, moon, fennel, ruby, js, wren, squirrel, wasm] 680 680 681 681 steps: 682 682 - name: Download Windows XP artifact ··· 709 709 name: tic80-macos-stub 710 710 path: macdir 711 711 712 - - name: Download WASM artifact 712 + - name: Download HTML artifact 713 713 uses: actions/download-artifact@v2 714 714 with: 715 - name: tic80-wasm-stub 715 + name: tic80-html-stub 716 716 717 717 - name: Rename 718 718 run: | ··· 752 752 tic80-linux-stub 753 753 tic80-rpi-stub 754 754 tic80-macos-stub 755 - tic80-wasm-stub 755 + tic80-html-stub 756 756 757 757 # === Delete PRO artifacts === 758 758 delete-pro:
+3 -1
CMakeLists.txt
··· 483 483 MACRO_CORE(wren TIC_BUILD_WITH_WREN FALSE) 484 484 MACRO_CORE(squirrel TIC_BUILD_WITH_SQUIRREL FALSE) 485 485 if(BUILD_WITH_MRUBY) 486 - MACRO_CORE(ruby TIC_BUILD_WITH_MRUBY FALSE) 486 + MACRO_CORE(ruby TIC_BUILD_WITH_MRUBY FALSE) 487 487 endif() 488 + MACRO_CORE(wasm TIC_BUILD_WITH_WASM FALSE) 488 489 489 490 endif() 490 491 ··· 1211 1212 MACRO_STUB(wren) 1212 1213 MACRO_STUB(squirrel) 1213 1214 MACRO_STUB(ruby) 1215 + MACRO_STUB(wasm) 1214 1216 1215 1217 endif() 1216 1218