Files
runner-test/.gitea/workflows/demo.yaml
Workflow config file is invalid. Please check your config file: yaml: mapping values are not allowed in this context

23 lines
751 B
YAML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: Cross-Platform Build Checkon: [push]
jobs:
  test-mac-capabilities:
    runs-on: macos-latest  # This works because of the labels we set earlier
    steps:
      - name: Check System
        run: |
          echo "I am running on hardware:"
          sysctl -n machdep.cpu.brand_string
          echo "Operating System:"
          sw_vers
      - name: Check Xcode (iOS/macOS)
        run: |
          xcodebuild -version || echo "Xcode not found!"
      - name: Check Cross-Compilers
        run: |
          echo "Checking for Go..."
          go version || echo "Go not installed"
          echo "Checking for Zig..."
          zig version || echo "Zig not installed"