Skip to content

regabi support loong64 #309

regabi support loong64

regabi support loong64 #309

Workflow file for this run

name: Go1.15
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linux:
name: Test Go1.15 for Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.15
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Go Test amd64
run: go test -race -v .
- name: Go Test 386
run: GOARCH=386 go test -v .
windows:
name: Test Go1.15 for Windows
runs-on: windows-latest
steps:
- name: Set up Go 1.15
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Go Test amd64
run: go test -race -v .
- name: Go Test 386
run: |
set GOARCH=386
go test -v .