This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push:
new 69b0c4045 ci: Disable newt tests on macos
69b0c4045 is described below
commit 69b0c404572e34a643ee9fc9315daa3a871aed6a
Author: Szymon Janc <[email protected]>
AuthorDate: Mon Dec 8 16:04:14 2025 +0100
ci: Disable newt tests on macos
Those are not yet supported on arm, while failing on Intel MacOS 15.
MacOS 13 runner is not longer supported.
---
.github/workflows/newt_test_all.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/newt_test_all.yml
b/.github/workflows/newt_test_all.yml
index 655bbce98..5951487f6 100644
--- a/.github/workflows/newt_test_all.yml
+++ b/.github/workflows/newt_test_all.yml
@@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest, macos-13]
+ os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
@@ -40,7 +40,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y gcc-multilib
- name: Install GNU sed
- if: matrix.os == 'macos-13'
+ if: matrix.os == 'macos-15-intel'
run: |
brew install gnu-sed
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH