~eliasnaur/gio

eccc94dceb55fd8bac04959278c4c81ba7bd5b24 — Elias Naur 5 months ago a22e0f5
.builds: bump to Go 1.18.9

Signed-off-by: Elias Naur <mail@eliasnaur.com>
4 files changed, 4 insertions(+), 4 deletions(-)

M .builds/apple.yml
M .builds/freebsd.yml
M .builds/linux.yml
M .builds/openbsd.yml
M .builds/apple.yml => .builds/apple.yml +1 -1
@@ 24,7 24,7 @@ environment:
tasks:
 - install_go: |
     mkdir -p /home/build/sdk
     curl -s https://dl.google.com/go/go1.17.7.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
     curl -s https://dl.google.com/go/go1.18.9.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
 - prepare_toolchain: |
     mkdir -p $APPLE_TOOLCHAIN_ROOT
     cd $APPLE_TOOLCHAIN_ROOT

M .builds/freebsd.yml => .builds/freebsd.yml +1 -1
@@ 16,7 16,7 @@ environment:
tasks:
 - install_go: |
     mkdir -p /home/build/sdk
     curl https://dl.google.com/go/go1.17.7.freebsd-amd64.tar.gz | tar -C /home/build/sdk -xzf -
     curl https://dl.google.com/go/go1.18.9.freebsd-amd64.tar.gz | tar -C /home/build/sdk -xzf -
 - test_gio: |
     cd gio
     go test ./...

M .builds/linux.yml => .builds/linux.yml +1 -1
@@ 39,7 39,7 @@ secrets:
tasks:
 - install_go: |
     mkdir -p /home/build/sdk
     curl -s https://dl.google.com/go/go1.17.7.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
     curl -s https://dl.google.com/go/go1.18.9.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
 - check_gofmt: |
     cd gio
     test -z "$(gofmt -s -l .)"

M .builds/openbsd.yml => .builds/openbsd.yml +1 -1
@@ 10,7 10,7 @@ environment:
tasks:
 - install_go: |
     mkdir -p /home/build/sdk
     curl https://dl.google.com/go/go1.17.7.src.tar.gz | tar -C /home/build/sdk -xzf -
     curl https://dl.google.com/go/go1.18.9.src.tar.gz | tar -C /home/build/sdk -xzf -
     cd /home/build/sdk/go/src
     ./make.bash
 - test_gio: |