Add arm64 compile on CI

This commit is contained in:
WeebDataHoarder
2025-04-07 13:10:25 +02:00
parent 40aa9709ea
commit 31bbec3a0b

View File

@@ -1,7 +1,10 @@
---
kind: pipeline
type: docker
name: build-go1.22
name: build-amd64-go1.22
platform:
os: linux
arch: amd64
environment:
CGO_ENABLED: "0"
@@ -39,13 +42,36 @@ steps:
---
kind: pipeline
type: docker
name: build-go1.24
name: build-amd64-go1.24
platform:
os: linux
arch: amd64
environment:
CGO_ENABLED: "0"
GOOS: linux
GOARCH: amd64
steps:
- name: build
image: golang:1.24-alpine3.21
commands:
- apk update
- apk add --no-cache git
- go build -v ./cmd/go-away
---
kind: pipeline
type: docker
name: build-arm64-go1.24
platform:
os: linux
arch: arm64
environment:
CGO_ENABLED: "0"
GOOS: linux
GOARCH: arm64
steps:
- name: build
image: golang:1.24-alpine3.21