Skip to content

Commit

Permalink
add tinygo to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivvist committed Apr 24, 2024
1 parent 8207286 commit 077fc91
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci_reuse_go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ jobs:
go-version: 'stable'
cache: false

# Install TinyGo
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb
sudo dpkg -i tinygo_0.31.2_amd64.deb
- name: Check pull request file size
if: github.event_name == 'pull_request'
run: curl -s https://raw.githubusercontent.com/untillpro/ci-action/master/scripts/checkPR.sh | bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci_reuse_go_cas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
go-version: 'stable'
cache: false

# Install TinyGo
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb
sudo dpkg -i tinygo_0.31.2_amd64.deb
- name: Checkout
uses: actions/checkout@v4

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci_reuse_go_norebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
go-version: 'stable'
cache: false

# Install TinyGo
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb
sudo dpkg -i tinygo_0.31.2_amd64.deb
- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit 077fc91

Please sign in to comment.