CircleCI-Public / go-orb

https://circleci.com/orbs/registry/orb/circleci/go
MIT License
9 stars 36 forks source link

incorrect hosttype on arm ubuntu machine images #64

Closed amwill04 closed 2 years ago

amwill04 commented 2 years ago

given the following:

jobs:
  build:
    machine:
      image: ubuntu-2204:2022.10.2
    resource_class: arm.medium
    steps:
      - checkout
      - go/install:
          version: 1.19.3

It fails as curl returns 404.

Issue seems to be due to $HOSTTYPE being set as aarch64 which does go binary not existing at https://dl.google.com/go/go1.19.3.linux-aarch64.tar.gz

amwill04 commented 2 years ago

Closing this as it clearly state it isnt supported.