this repo has no description
0
fork

Configure Feed

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

added some pro builds to the CI

nesbox 14594bcf 104c47bf

+59 -2
+59 -2
.github/workflows/build.yml
··· 36 36 name: 'tic80-winxp-stub' 37 37 path: build/bin/tic80*.exe 38 38 39 + # === Windows XP PRO === 40 + winxp-pro: 41 + runs-on: windows-latest 42 + 43 + steps: 44 + - uses: actions/checkout@v2 45 + with: 46 + submodules: recursive 47 + fetch-depth: 0 48 + 49 + - name: Build 50 + shell: cmd 51 + run: | 52 + cd build 53 + cmake -G "Visual Studio 16 2019" -A Win32 -T v141_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DBUILD_PRO=On .. 54 + cmake --build . --config %BUILD_TYPE% --parallel 55 + 56 + - name: Deploy 57 + uses: actions/upload-artifact@v2 58 + with: 59 + name: 'tic80-winxp-pro' 60 + path: build/bin/tic80.exe 61 + 39 62 # === Windows === 40 63 windows: 41 64 runs-on: windows-latest ··· 82 105 cmake -G "Visual Studio 16 2019" -DBUILD_SDLGPU=On -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DBUILD_PRO=On .. 83 106 cmake --build . --config %BUILD_TYPE% --parallel 84 107 108 + - name: Deploy 109 + uses: actions/upload-artifact@v2 110 + with: 111 + name: 'tic80-windows-pro' 112 + path: build/bin/tic80.exe 113 + 85 114 # === Windows Sokol === 86 115 windows-sokol: 87 116 runs-on: windows-latest ··· 128 157 cmake --build . --config $BUILD_TYPE --parallel 129 158 cpack 130 159 160 + - name: Deploy DEB 161 + uses: actions/upload-artifact@v2 162 + with: 163 + name: 'tic80-linux-deb-pro' 164 + path: build/tic80.deb 165 + 166 + - name: Deploy ZIP 167 + uses: actions/upload-artifact@v2 168 + with: 169 + name: 'tic80-linux-pro' 170 + path: build/bin/tic80 171 + 131 172 # === Ubuntu === 132 173 linux: 133 174 runs-on: ubuntu-latest ··· 390 431 cpack 391 432 cp *.dmg tic80.dmg 392 433 434 + - name: Deploy DMG 435 + uses: actions/upload-artifact@v2 436 + with: 437 + name: 'tic80-macos-dmg-pro' 438 + path: build/tic80.dmg 439 + 440 + - name: Deploy 441 + uses: actions/upload-artifact@v2 442 + with: 443 + name: 'tic80-macos-pro' 444 + path: build/bin/tic80 445 + 393 446 # === Android === 394 447 android: 395 448 runs-on: ubuntu-latest ··· 606 659 uses: geekyeggo/delete-artifact@v1 607 660 with: 608 661 name: | 609 - tic80-rpi 610 - tic80-macos 611 662 tic80-winxp-stub 612 663 tic80-windows-stub 613 664 tic80-linux-stub 614 665 tic80-rpi-stub 615 666 tic80-macos-stub 616 667 tic80-wasm-stub 668 + # tic80-macos-pro 669 + # tic80-macos-dmg-pro 670 + # tic80-winxp-pro 671 + # tic80-windows-pro 672 + # tic80-linux-deb-pro 673 + # tic80-linux-pro