From c21897620b072c8732394ac0b97ef18bb91a6786 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Tue, 1 Jun 2021 18:13:35 +0200 Subject: [PATCH] .builds: upgrade OpenBSD Go version Attempting to fix a segmentation during make.bash. Signed-off-by: Elias Naur --- .builds/openbsd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 757e80f0..7e5c72a4 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -8,9 +8,9 @@ sources: environment: PATH: /home/build/sdk/go/bin:/bin:/usr/local/bin:/usr/bin tasks: - - install_go1_14: | + - install_go: | mkdir -p /home/build/sdk - curl https://dl.google.com/go/go1.14.src.tar.gz | tar -C /home/build/sdk -xzf - + curl https://dl.google.com/go/go1.16.3.src.tar.gz | tar -C /home/build/sdk -xzf - cd /home/build/sdk/go/src ./make.bash - test_gio: |