This is an automated email from the ASF dual-hosted git repository.
aw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/yetus-homebrew.git
The following commit(s) were added to refs/heads/main by this push:
new ce5e49e YETUS-1234. remove mac-10-15 from yetus homebrew build (#8)
ce5e49e is described below
commit ce5e49ebe9b77bcbc2b1f0fca017615da6a33011
Author: Allen Wittenauer <[email protected]>
AuthorDate: Thu Sep 7 08:44:06 2023 -0700
YETUS-1234. remove mac-10-15 from yetus homebrew build (#8)
Signed-off-by: Nick Dimiduk <[email protected]>
---
.github/workflows/testing.yaml | 8 +++++---
.github/workflows/yetus.yml | 2 +-
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml
index 1b20e22..eba415a 100644
--- a/.github/workflows/testing.yaml
+++ b/.github/workflows/testing.yaml
@@ -11,20 +11,22 @@ name: homebrew-test
on: [push] # yamllint disable-line rule:truthy
jobs:
- testing-mac-10-15:
- runs-on: macos-10.15
+ testing-macos:
+ runs-on: macos-11
steps:
# This step is necessary because one of our dependencies
# conflicts with the Github image .
- name: install homebrew go
shell: bash
run: |
+ brew unlink go || true
brew install go || true
brew link --overwrite go || true
- name: checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: tests
shell: bash
run: |
brew tap apache/yetus file://$(pwd)
brew install yetus --with-all --overwrite
+ test-patch --empty-patch --build-tool=nobuild --plugins=all
diff --git a/.github/workflows/yetus.yml b/.github/workflows/yetus.yml
index 0f32d75..3a85fa8 100644
--- a/.github/workflows/yetus.yml
+++ b/.github/workflows/yetus.yml
@@ -25,7 +25,7 @@ jobs:
steps:
- name: checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
path: src
fetch-depth: 0