Skip to content

Commit b2234f2

Browse files
committedNov 4, 2022
ci: add build for aix
Signed-off-by: Mark Sagi-Kazar <[email protected]>
1 parent 52009d3 commit b2234f2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
 

‎.github/workflows/ci.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ on:
77
pull_request:
88

99
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
include:
17+
- goos: js
18+
goarch: wasm
19+
- goos: aix
20+
goarch: ppc64
21+
22+
steps:
23+
- name: Set up Go
24+
uses: actions/setup-go@v3
25+
with:
26+
go-version: 1.19
27+
28+
- name: Checkout code
29+
uses: actions/checkout@v3
30+
31+
- name: Build
32+
run: go build .
33+
env:
34+
GOOS: ${{ matrix.goos }}
35+
GOARCH: ${{ matrix.goarch }}
36+
1037
test:
1138
name: Test
1239
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)
Please sign in to comment.