All checks were successful
Farm Connectivity Check / check-linux (push) Successful in 0s
Cross-Platform Build Check / test-mac-capabilities (push) Successful in 1s
Farm Connectivity Check / check-windows-capability (push) Successful in 0s
Farm Connectivity Check / check-mac (push) Successful in 0s
24 lines
617 B
YAML
24 lines
617 B
YAML
name: Farm Connectivity Check
|
|
on: [push]
|
|
|
|
jobs:
|
|
check-mac:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- run: echo "Hello from the Mac Mini! I build iOS and macOS."
|
|
|
|
check-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
echo "Hello from the Linux Beast! I build Linux apps."
|
|
echo "Checking for Qt..."
|
|
qmake --version
|
|
|
|
check-windows-capability:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- run: |
|
|
echo "Hello from the Linux Beast (pretending to be Windows)!"
|
|
echo "Checking for MinGW (Windows Compiler)..."
|
|
x86_64-w64-mingw32-g++ --version |