Skip to content

Commit

Permalink
restore installing tinygo
Browse files Browse the repository at this point in the history
  • Loading branch information
ivvist committed Dec 2, 2024
1 parent 6b383f3 commit 5668bc5
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 @@ -48,6 +48,12 @@ jobs:
go-version: 'stable'
cache: false

# Install TinyGo
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_amd64.deb
sudo dpkg -i tinygo_0.34.0_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 @@ -43,6 +43,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Install TinyGo
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_amd64.deb
sudo dpkg -i tinygo_0.34.0_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_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
go-version: 'stable'
cache: false

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

0 comments on commit 5668bc5

Please sign in to comment.