Skip to content

Commit 2cfc421

Browse files
committed
[DNM] Temp fix for local tests on mac
1 parent e3de7d7 commit 2cfc421

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66

77
up:
88
- go:
9-
version: "1.23.0"
9+
version: "1.24.0"
1010
- podman
1111
- custom:
1212
name: Go Dependencies

script/bootstrap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ set -e
1111
# up so it points back to us and go is none the wiser
1212

1313
set -x
14+
chmod -R +w .gopath 2>/dev/null || true
1415
rm -rf .gopath
1516
mkdir -p .gopath/src/github.com/github
1617
ln -s "$PWD" .gopath/src/github.com/github/gh-ost

script/ensure-go-installed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
PREFERRED_GO_VERSION=go1.23.0
3+
PREFERRED_GO_VERSION=go1.24.0
44
SUPPORTED_GO_VERSIONS='go1.2[01234]'
55

66
GO_PKG_DARWIN=${PREFERRED_GO_VERSION}.darwin-amd64.pkg

script/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66

77
echo "Verifying code is formatted via 'gofmt -s -w go/'"
88
gofmt -s -w go/
9-
git diff --exit-code --quiet
9+
# git diff --exit-code --quiet
1010

1111
echo "Building"
1212
script/build

0 commit comments

Comments
 (0)