Skip to content

tidying

tidying #313

Workflow file for this run

name: Build Go compiler
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- uses: actions/[email protected]
- name: Prerequisites
run: |
sudo apt-get update
sudo apt-get install -y binfmt-support qemu-user-static
- name: Compile Go with make.bash
run: |
cd src ; ./make.bash
- name: Compile Go with all.bash
run: |
cd src ; ./clean.bash ; ./all.bash
- name: Run Go distribution tests under tamago/arm
run: |
GO_BUILDER_NAME="tamago" GOOS=tamago GOARCH=arm ./bin/go tool dist test
- name: Run Go distribution tests under tamago/riscv64
run: |
GO_BUILDER_NAME="tamago" GOOS=tamago GOARCH=riscv64 ./bin/go tool dist test