this repo has no description
0
fork

Configure Feed

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

Revert "update actions/checkout and actions/upload-artifact to v4"

This reverts commit 4ec2df35fc570e748e72cf96a96a148700d4b1bb.

alice 3910c716 edc03a2c

+53 -53
+53 -53
.github/workflows/build.yml
··· 12 12 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 13 13 14 14 steps: 15 - - uses: actions/checkout@v4 15 + - uses: actions/checkout@v3 16 16 with: 17 17 submodules: recursive 18 18 fetch-depth: 0 ··· 30 30 cmake --build . --config %BUILD_TYPE% --parallel 31 31 32 32 - name: Deploy 33 - uses: actions/upload-artifact@v4 33 + uses: actions/upload-artifact@v3 34 34 with: 35 35 name: "tic80-winxp" 36 36 path: build/bin/tic80.exe 37 37 38 38 - name: Deploy stubs 39 - uses: actions/upload-artifact@v4 39 + uses: actions/upload-artifact@v3 40 40 with: 41 41 name: "tic80-winxp-stub" 42 42 path: build/bin/tic80*.exe ··· 47 47 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 48 48 49 49 steps: 50 - - uses: actions/checkout@v4 50 + - uses: actions/checkout@v3 51 51 with: 52 52 submodules: recursive 53 53 fetch-depth: 0 ··· 65 65 cmake --build . --config %BUILD_TYPE% --parallel 66 66 67 67 - name: Deploy 68 - uses: actions/upload-artifact@v4 68 + uses: actions/upload-artifact@v3 69 69 with: 70 70 name: "tic80-winxp-pro" 71 71 path: build/bin/tic80.exe ··· 76 76 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 77 77 78 78 steps: 79 - - uses: actions/checkout@v4 79 + - uses: actions/checkout@v3 80 80 with: 81 81 submodules: recursive 82 82 fetch-depth: 0 ··· 93 93 cmake --build . --config %BUILD_TYPE% --parallel 94 94 95 95 - name: Deploy 96 - uses: actions/upload-artifact@v4 96 + uses: actions/upload-artifact@v3 97 97 with: 98 98 name: "tic80-windows" 99 99 path: build/bin/tic80.exe 100 100 101 101 - name: Deploy stubs 102 - uses: actions/upload-artifact@v4 102 + uses: actions/upload-artifact@v3 103 103 with: 104 104 name: "tic80-windows-stub" 105 105 path: build/bin/tic80*.exe ··· 110 110 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 111 111 112 112 steps: 113 - - uses: actions/checkout@v4 113 + - uses: actions/checkout@v3 114 114 with: 115 115 submodules: recursive 116 116 fetch-depth: 0 ··· 127 127 cmake --build . --config %BUILD_TYPE% --parallel 128 128 129 129 - name: Deploy 130 - uses: actions/upload-artifact@v4 130 + uses: actions/upload-artifact@v3 131 131 with: 132 132 name: "tic80-windows-pro" 133 133 path: build/bin/tic80.exe ··· 138 138 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 139 139 140 140 steps: 141 - - uses: actions/checkout@v4 141 + - uses: actions/checkout@v3 142 142 with: 143 143 submodules: recursive 144 144 fetch-depth: 0 ··· 156 156 cp bin/tic80-sokol.exe bin/tic80.exe 157 157 158 158 - name: Deploy 159 - uses: actions/upload-artifact@v4 159 + uses: actions/upload-artifact@v3 160 160 with: 161 161 name: "tic80-windows-sokol" 162 162 path: build/bin/tic80.exe ··· 179 179 with: 180 180 ruby-version: 2.6 181 181 182 - - uses: actions/checkout@v4 182 + - uses: actions/checkout@v3 183 183 with: 184 184 submodules: recursive 185 185 fetch-depth: 0 ··· 192 192 cmake --build . --config %BUILD_TYPE% --parallel 193 193 194 194 - name: Deploy 195 - uses: actions/upload-artifact@v4 195 + uses: actions/upload-artifact@v3 196 196 with: 197 197 name: "tic80-mingw" 198 198 path: build/bin/tic80.exe ··· 203 203 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 204 204 205 205 steps: 206 - - uses: actions/checkout@v4 206 + - uses: actions/checkout@v3 207 207 with: 208 208 submodules: recursive 209 209 fetch-depth: 0 ··· 225 225 cpack 226 226 227 227 - name: Deploy DEB 228 - uses: actions/upload-artifact@v4 228 + uses: actions/upload-artifact@v3 229 229 with: 230 230 name: "tic80-linux-deb-pro" 231 231 path: build/tic80.deb 232 232 233 233 - name: Deploy ZIP 234 - uses: actions/upload-artifact@v4 234 + uses: actions/upload-artifact@v3 235 235 with: 236 236 name: "tic80-linux-pro" 237 237 path: build/bin/tic80 ··· 242 242 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 243 243 244 244 steps: 245 - - uses: actions/checkout@v4 245 + - uses: actions/checkout@v3 246 246 with: 247 247 submodules: recursive 248 248 fetch-depth: 0 ··· 264 264 cpack 265 265 266 266 - name: Deploy DEB 267 - uses: actions/upload-artifact@v4 267 + uses: actions/upload-artifact@v3 268 268 with: 269 269 name: "tic80-linux-deb" 270 270 path: build/tic80.deb 271 271 272 272 - name: Deploy ZIP 273 - uses: actions/upload-artifact@v4 273 + uses: actions/upload-artifact@v3 274 274 with: 275 275 name: "tic80-linux" 276 276 path: build/bin/tic80 277 277 278 278 - name: Deploy stubs 279 - uses: actions/upload-artifact@v4 279 + uses: actions/upload-artifact@v3 280 280 with: 281 281 name: "tic80-linux-stub" 282 282 path: build/bin/tic80* ··· 288 288 container: nesbox/rpi-tic80:latest 289 289 290 290 steps: 291 - - uses: actions/checkout@v4 291 + - uses: actions/checkout@v3 292 292 with: 293 293 submodules: recursive 294 294 fetch-depth: 0 ··· 306 306 cpack 307 307 308 308 - name: Deploy DEB 309 - uses: actions/upload-artifact@v4 309 + uses: actions/upload-artifact@v3 310 310 with: 311 311 name: "tic80-rpi-dep" 312 312 path: build/tic80.deb 313 313 314 314 - name: Deploy 315 - uses: actions/upload-artifact@v4 315 + uses: actions/upload-artifact@v3 316 316 with: 317 317 name: "tic80-rpi" 318 318 path: build/bin/tic80 319 319 320 320 - name: Deploy stubs 321 - uses: actions/upload-artifact@v4 321 + uses: actions/upload-artifact@v3 322 322 with: 323 323 name: "tic80-rpi-stub" 324 324 path: build/bin/tic80* ··· 330 330 container: nesbox/rpi-tic80:latest 331 331 332 332 steps: 333 - - uses: actions/checkout@v4 333 + - uses: actions/checkout@v3 334 334 with: 335 335 submodules: recursive 336 336 fetch-depth: 0 ··· 349 349 cpack 350 350 351 351 - name: Deploy DEB 352 - uses: actions/upload-artifact@v4 352 + uses: actions/upload-artifact@v3 353 353 with: 354 354 name: "tic80-rpi-deb-pro" 355 355 path: build/tic80.deb 356 356 357 357 - name: Deploy 358 - uses: actions/upload-artifact@v4 358 + uses: actions/upload-artifact@v3 359 359 with: 360 360 name: "tic80-rpi-pro" 361 361 path: build/bin/tic80 ··· 367 367 container: nesbox/baremetalpi-tic80:latest 368 368 369 369 steps: 370 - - uses: actions/checkout@v4 370 + - uses: actions/checkout@v3 371 371 with: 372 372 submodules: recursive 373 373 fetch-depth: 0 ··· 410 410 cp build/baremetalpi/boot/config.txt vendor/circle-stdlib/libs/circle/boot/config.txt 411 411 412 412 - name: Deploy 413 - uses: actions/upload-artifact@v4 413 + uses: actions/upload-artifact@v3 414 414 with: 415 415 name: "tic80-rpi-baremetal" 416 416 path: | ··· 428 428 container: nesbox/baremetalpi-tic80:latest 429 429 430 430 steps: 431 - - uses: actions/checkout@v4 431 + - uses: actions/checkout@v3 432 432 with: 433 433 submodules: recursive 434 434 fetch-depth: 0 ··· 471 471 cp build/baremetalpi/boot/config.txt vendor/circle-stdlib/libs/circle/boot/config.txt 472 472 473 473 - name: Deploy 474 - uses: actions/upload-artifact@v4 474 + uses: actions/upload-artifact@v3 475 475 with: 476 476 name: "tic80-rpi4-baremetal" 477 477 path: | ··· 492 492 container: nesbox/devkitpro-tic80:latest 493 493 494 494 steps: 495 - - uses: actions/checkout@v4 495 + - uses: actions/checkout@v3 496 496 with: 497 497 submodules: recursive 498 498 fetch-depth: 0 ··· 509 509 make -j$(nproc) 510 510 511 511 - name: Deploy 512 - uses: actions/upload-artifact@v4 512 + uses: actions/upload-artifact@v3 513 513 with: 514 514 name: "tic80-nintendo-3ds" 515 515 path: build/bin/tic80.3dsx ··· 520 520 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 521 521 522 522 steps: 523 - - uses: actions/checkout@v4 523 + - uses: actions/checkout@v3 524 524 with: 525 525 submodules: recursive 526 526 fetch-depth: 0 ··· 537 537 cp *.dmg tic80.dmg 538 538 539 539 - name: Deploy DMG 540 - uses: actions/upload-artifact@v4 540 + uses: actions/upload-artifact@v3 541 541 with: 542 542 name: "tic80-macos-dmg" 543 543 path: build/tic80.dmg 544 544 545 545 - name: Deploy 546 - uses: actions/upload-artifact@v4 546 + uses: actions/upload-artifact@v3 547 547 with: 548 548 name: "tic80-macos" 549 549 path: build/bin/tic80 550 550 551 551 # - name: Deploy stubs 552 - # uses: actions/upload-artifact@v4 552 + # uses: actions/upload-artifact@v3 553 553 # with: 554 554 # name: "tic80-macos-stub" 555 555 # path: build/bin/tic80* ··· 560 560 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 561 561 562 562 steps: 563 - - uses: actions/checkout@v4 563 + - uses: actions/checkout@v3 564 564 with: 565 565 submodules: recursive 566 566 fetch-depth: 0 ··· 577 577 cp *.dmg tic80.dmg 578 578 579 579 - name: Deploy DMG 580 - uses: actions/upload-artifact@v4 580 + uses: actions/upload-artifact@v3 581 581 with: 582 582 name: "tic80-macos-arm64-dmg" 583 583 path: build/tic80.dmg 584 584 585 585 - name: Deploy 586 - uses: actions/upload-artifact@v4 586 + uses: actions/upload-artifact@v3 587 587 with: 588 588 name: "tic80-macos-arm64" 589 589 path: build/bin/tic80 590 590 591 591 # - name: Deploy stubs 592 - # uses: actions/upload-artifact@v4 592 + # uses: actions/upload-artifact@v3 593 593 # with: 594 594 # name: "tic80-macos-stub" 595 595 # path: build/bin/tic80* ··· 600 600 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 601 601 602 602 steps: 603 - - uses: actions/checkout@v4 603 + - uses: actions/checkout@v3 604 604 with: 605 605 submodules: recursive 606 606 fetch-depth: 0 ··· 617 617 cp *.dmg tic80.dmg 618 618 619 619 - name: Deploy DMG 620 - uses: actions/upload-artifact@v4 620 + uses: actions/upload-artifact@v3 621 621 with: 622 622 name: "tic80-macos-dmg-pro" 623 623 path: build/tic80.dmg 624 624 625 625 - name: Deploy 626 - uses: actions/upload-artifact@v4 626 + uses: actions/upload-artifact@v3 627 627 with: 628 628 name: "tic80-macos-pro" 629 629 path: build/bin/tic80 ··· 634 634 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name 635 635 636 636 steps: 637 - - uses: actions/checkout@v4 637 + - uses: actions/checkout@v3 638 638 with: 639 639 submodules: recursive 640 640 fetch-depth: 0 ··· 664 664 ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} 665 665 666 666 - name: Deploy 667 - uses: actions/upload-artifact@v4 667 + uses: actions/upload-artifact@v3 668 668 with: 669 669 name: "tic80-android" 670 670 path: build/android/tic80.apk ··· 677 677 steps: 678 678 - uses: mymindstorm/setup-emsdk@v14 679 679 680 - - uses: actions/checkout@v4 680 + - uses: actions/checkout@v3 681 681 with: 682 682 submodules: recursive 683 683 fetch-depth: 0 ··· 703 703 cp bin/tic80.wasm webapp/tic80.wasm 704 704 705 705 - name: Deploy 706 - uses: actions/upload-artifact@v4 706 + uses: actions/upload-artifact@v3 707 707 with: 708 708 name: "tic80-html" 709 709 path: | ··· 713 713 build/bin/html/export.html 714 714 715 715 - name: Deploy WebApp 716 - uses: actions/upload-artifact@v4 716 + uses: actions/upload-artifact@v3 717 717 with: 718 718 name: "tic80-webapp" 719 719 path: | ··· 727 727 build/webapp/tic80.wasm 728 728 729 729 - name: Deploy stubs 730 - uses: actions/upload-artifact@v4 730 + uses: actions/upload-artifact@v3 731 731 with: 732 732 name: "tic80-html-stub" 733 733 path: | ··· 790 790 mv -f html.zip html 791 791 792 792 - name: Deploy 793 - uses: actions/upload-artifact@v4 793 + uses: actions/upload-artifact@v3 794 794 with: 795 795 name: "tic80-export" 796 796 path: | ··· 858 858 mv -f html${{ matrix.script }}.zip html${{ matrix.script }} 859 859 860 860 - name: Deploy 861 - uses: actions/upload-artifact@v4 861 + uses: actions/upload-artifact@v3 862 862 with: 863 863 name: "tic80-export" 864 864 path: |