diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 8f01f7d4..59dc7b85 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -76,6 +76,8 @@ jobs: run: make test GOTESTFLAGS="-v -short" - name: Build TinyGo release tarball run: make release -j3 + - name: Test stdlib packages + run: make tinygo-test - name: Make release artifact shell: bash run: cp -p build/release.tar.gz build/tinygo.darwin-amd64.tar.gz diff --git a/src/os/path.go b/src/os/path.go index 66d738e5..df87887b 100644 --- a/src/os/path.go +++ b/src/os/path.go @@ -1,6 +1,3 @@ -//go:build !baremetal -// +build !baremetal - // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.