mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
Compare commits
4 Commits
6f9b72a27f
...
d322d97d4a
Author | SHA1 | Date | |
---|---|---|---|
|
d322d97d4a | ||
|
4176376b21 | ||
|
75b1208af0 | ||
|
e18140e110 |
25
.github/workflows/test-macos-runner.yml
vendored
25
.github/workflows/test-macos-runner.yml
vendored
|
@ -4,16 +4,25 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: [ dev, master ]
|
branches: [ dev, master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ dev, master ]
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-runner:
|
test-runner:
|
||||||
runs-on: [self-hosted, macos15-vm]
|
runs-on: [self-hosted, macOS-15]
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
|
|
||||||
steps:
|
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
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: System information
|
- name: System information
|
||||||
run: |
|
run: |
|
||||||
echo "Runner information:"
|
echo "Runner information:"
|
||||||
|
@ -25,7 +34,7 @@ jobs:
|
||||||
system_profiler SPHardwareDataType | grep "Memory:"
|
system_profiler SPHardwareDataType | grep "Memory:"
|
||||||
echo "Disk space:"
|
echo "Disk space:"
|
||||||
df -h
|
df -h
|
||||||
|
|
||||||
- name: Check development tools
|
- name: Check development tools
|
||||||
run: |
|
run: |
|
||||||
echo "Xcode tools version:"
|
echo "Xcode tools version:"
|
||||||
|
@ -37,7 +46,7 @@ jobs:
|
||||||
git --version
|
git --version
|
||||||
echo "Available SDKs:"
|
echo "Available SDKs:"
|
||||||
xcodebuild -showsdks || echo "Xcode not fully installed"
|
xcodebuild -showsdks || echo "Xcode not fully installed"
|
||||||
|
|
||||||
- name: Test basic compilation
|
- name: Test basic compilation
|
||||||
run: |
|
run: |
|
||||||
echo "Testing basic C++ compilation:"
|
echo "Testing basic C++ compilation:"
|
||||||
|
@ -48,9 +57,9 @@ jobs:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
clang++ -o test test.cpp
|
clang++ -o test_cpp test.cpp
|
||||||
./test
|
./test_cpp
|
||||||
|
|
||||||
- name: Check FairMQ dependencies
|
- name: Check FairMQ dependencies
|
||||||
run: |
|
run: |
|
||||||
echo "Checking potential FairMQ build dependencies:"
|
echo "Checking potential FairMQ build dependencies:"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user