test 241024-ventura-supp
branch
#688
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
concurrency: | |
group: ${{ github.event_name != 'pull_request' && github.run_id || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
x86_64-macos-native: | |
name: "x86_64: macOS Ventura, Xcode 14.2, Valgrind" | |
# See: https://github.com/actions/runner-images#available-images. | |
runs-on: macos-13 | |
env: | |
CC: 'clang' | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Xcode version | |
run: | | |
sudo xcode-select --switch /Applications/Xcode_14.2.app | |
xcodebuild -version | |
clang --version | |
- name: Install and cache Valgrind | |
uses: ./.github/actions/install-homebrew-valgrind | |
- name: Run valgrind | |
run: | | |
which bash | |
valgrind bash -c 'echo Hello' |