Compare commits

..

No commits in common. "d322d97d4a76246e4c369a818d94aaf733cfeb4f" and "6f9b72a27f40aae030161bd469723ee16746c268" have entirely different histories.

View File

@ -4,25 +4,16 @@ on:
workflow_dispatch:
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
jobs:
test-runner:
runs-on: [self-hosted, macOS-15]
runs-on: [self-hosted, macos15-vm]
timeout-minutes: 120
steps:
- name: Setup environment
run: |
echo "Setting up PATH for Homebrew..."
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
echo "PATH=$PATH" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v4
- name: System information
run: |
echo "Runner information:"
@ -34,7 +25,7 @@ jobs:
system_profiler SPHardwareDataType | grep "Memory:"
echo "Disk space:"
df -h
- name: Check development tools
run: |
echo "Xcode tools version:"
@ -46,7 +37,7 @@ jobs:
git --version
echo "Available SDKs:"
xcodebuild -showsdks || echo "Xcode not fully installed"
- name: Test basic compilation
run: |
echo "Testing basic C++ compilation:"
@ -57,9 +48,9 @@ jobs:
return 0;
}
EOF
clang++ -o test_cpp test.cpp
./test_cpp
clang++ -o test test.cpp
./test
- name: Check FairMQ dependencies
run: |
echo "Checking potential FairMQ build dependencies:"