Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable macOS builder with staged kyua #2428

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##
# Copyright (c) 2024 Keve Müller <kevemueller@users.github.com>
# Copyright (c) 2024, 2025 Keve Müller <kevemueller@users.github.com>
#
# SPDX-License-Identifier: BSD-2-Clause
#
Expand Down Expand Up @@ -31,19 +31,19 @@
matrix:
build-os:
- ubuntu-24.04
# - macos-15
- macos-15
sanitize:
- []
- ["asan", "lsan"]
- ["ubsan", "tsan"]
include:
# - build-os: macos-15
# compiler: clang-19
# pkgs:
# # - pkgconf comes preinstalled on the GitHub runner
# - libarchive
# - llvm@19
# llvm-bindir: /opt/homebrew/opt/llvm@19/bin
- build-os: macos-15
compiler: clang-19
pkgs:
# - pkgconf comes preinstalled on the GitHub runner
- libarchive
- llvm@19
llvm-bindir: /opt/homebrew/opt/llvm@19/bin
- build-os: ubuntu-24.04
compiler: clang-18
pkgs:
Expand Down Expand Up @@ -79,8 +79,10 @@
# * libarchive from brew (system provided libarchive has no header files for development)
# * openssl from brew
# * libcurl from system
#
# * atf from brew re-compiling from --HEAD
# * kyua from kevemueller/ksysroot until it gets re-merged into brew mainline

export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
brew update --quiet || true

# temporarily use unstable atf to benefit from fix for std::vector
Expand All @@ -89,10 +91,8 @@
brew install ${{ join(matrix.pkgs, ' ') }}

# kyua was kicked out of brew due to lack of activity
# we patch away the disabled line and install the last built binary version
curl https://raw.githubusercontent.com/Homebrew/homebrew-core/master/Formula/k/kyua.rb |
sed 's/^[[:space:]]*disable.*$//' > kyua.rb
brew install --formula ./kyua.rb
# we install it from kevemueller/ksysroot
brew install --formula kevemueller/ksysroot/kyua

# We make sure pkg-config picks up brew's libarchive instead of pointing to system libarchive
echo PKG_CONFIG_PATH=$(brew --prefix libarchive)/lib/pkgconfig >> "${GITHUB_ENV}"
Expand Down Expand Up @@ -170,7 +170,7 @@

kyua report-html # produces html subdirectory
# also include plain text
kyua report --verbose --results-filter=xfail,broken,failed > html/test-reportfailed.txt

Check failure on line 173 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / build asan+lsan ubuntu-24.04 clang-18

Checks failed!

make check failed

Check failure on line 173 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / build asan+lsan macos-15 clang-19

Checks failed!

make check failed
# also include plain JUnit
kyua report-junit --output html/test-reportfailed.xml
# also include the kyua log
Expand Down
Loading