Skip to content

EF pipeline migration: Arch target on job cross-build

job cross-build has this matrix configuration:

from the include:

  - remote: 'https://gitlab.com/zygoon/go-gitlab-ci/-/raw/master/go.yml'
cross-build:
  extends: .go-build
  parallel:
    matrix:
      - GOOS: linux
        GOARCH: ["386", amd64, arm, arm64, riscv64]
        CI_GO_VERSION: ["latest"]
      - GOOS: windows
        GOARCH: [amd64, arm64]
        CI_GO_VERSION: ["latest"]
      - GOOS: darwin
        GOARCH: [amd64, arm64]
        CI_GO_VERSION: ["latest"]

As #24 (closed), these Arch won't be provided by EF. What do you want to do with this configuration?