From d322d97d4a76246e4c369a818d94aaf733cfeb4f Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Tue, 26 Aug 2025 11:59:20 +0200 Subject: [PATCH] f --- .github/workflows/test-macos-runner.yml | 31 ++++--------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/.github/workflows/test-macos-runner.yml b/.github/workflows/test-macos-runner.yml index 8c573c8b..c3ded7cd 100644 --- a/.github/workflows/test-macos-runner.yml +++ b/.github/workflows/test-macos-runner.yml @@ -49,39 +49,16 @@ jobs: - name: Test basic compilation run: | - echo "Current working directory:" - pwd - ls -la - echo "Testing compilation in current directory:" - - # Create test file + echo "Testing basic C++ compilation:" cat > test.cpp << 'EOF' #include int main() { - std::cout << "Hello from macOS runner!" << std::endl; + std::cout << "Hello from macOS 15 UTM runner!" << std::endl; return 0; } EOF - - echo "File created, attempting compilation..." - ls -la test.cpp - - # Try compilation with verbose output - clang++ -v -o test test.cpp 2>&1 || echo "Compilation failed" - - # Check if binary was created - ls -la test* || echo "No test binary found" - - # If binary exists, try to run it - if [ -f test ]; then - echo "Binary found, testing execution:" - ./test - else - echo "Binary not created, trying alternative approach:" - # Try compiling to home directory - clang++ -o ~/test test.cpp - ~/test - fi + clang++ -o test_cpp test.cpp + ./test_cpp - name: Check FairMQ dependencies run: |