From 9dafa40872bec87d2a3e55eeb241bfee75f883e9 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sat, 2 Sep 2023 18:16:53 -0700 Subject: [PATCH] Remove || true to force macos setup to complete successfully --- .github/workflows/go-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 47a4355..fb8cdb9 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -43,15 +43,15 @@ jobs: run: | # Install our dependencies - brew install fish tmux bash || true + brew install fish tmux bash # Set a consistent hostname so we can run tests that depend on it - sudo scutil --set HostName ghaction-runner-hostname || true + sudo scutil --set HostName ghaction-runner-hostname # Set up a tmpfs for ~/.hishtory/ to help tests run faster mkdir ~/.hishtory/ - sudo diskutil apfs create $(sudo hdiutil attach -nomount ram://1024000) RAMDisk || true - sudo mount -o noatime -t apfs /Volumes/RAMDisk ~/.hishtory/ || true + sudo diskutil apfs create $(sudo hdiutil attach -nomount ram://1024000) RAMDisk + sudo mount -o noatime -t apfs /Volumes/RAMDisk ~/.hishtory/ - name: Go test if: ${{ !startsWith(github.event.head_commit.message, 'Release') }} run: |