diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux.yml | 7 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
3 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 680958094..0359a9f31 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -93,7 +93,7 @@ jobs: path: build/tinygo.darwin-amd64.tar.gz - name: Smoke tests shell: bash - run: make smoketest TINYGO=$(PWD)/build/tinygo AVR=0 + run: make smoketest TINYGO=$(PWD)/build/tinygo test-macos-homebrew: name: homebrew-install runs-on: macos-latest diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8a5a1c28d..7ead14904 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -133,11 +133,6 @@ jobs: mkdir -p ~/lib tar -C ~/lib -xf tinygo.linux-amd64.tar.gz ln -s ~/lib/tinygo/bin/tinygo ~/go/bin/tinygo - - name: Install apt dependencies - run: | - sudo apt-get install --no-install-recommends \ - gcc-avr \ - avr-libc - run: make tinygo-test-wasi-fast - run: make smoketest assert-test-linux: @@ -158,8 +153,6 @@ jobs: qemu-system-arm \ qemu-system-riscv32 \ qemu-user \ - gcc-avr \ - avr-libc \ simavr \ ninja-build - name: Install Go diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0aa3357eb..6e493d89a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -125,7 +125,7 @@ jobs: run: 7z x release.zip -r - name: Smoke tests shell: bash - run: make smoketest TINYGO=$(PWD)/build/tinygo/bin/tinygo AVR=0 + run: make smoketest TINYGO=$(PWD)/build/tinygo/bin/tinygo stdlib-test-windows: runs-on: windows-2022 |