Skip to content

build: use TinyGo latest release for CI builds. #1496

build: use TinyGo latest release for CI builds.

build: use TinyGo latest release for CI builds. #1496

Workflow file for this run

name: Linux
on:
pull_request:
push:
branches:
- dev
- release
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/tinygo-org/tinygo:latest
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v6
- name: TinyGo version check
run: tinygo version
- name: Add required GOFLAGS
run: go env -w GOFLAGS=-buildvcs=false
- name: Run unit tests
run: go test
- name: Run TinyGo smoke tests
run: make smoketest-tinygo
- name: Run Linux smoke tests
run: make smoketest-linux
- name: "Run Windows cross-compiled smoke tests"
run: make smoketest-windows