Add .gitea/workflows/farm-check.yaml
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
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
This commit is contained in:
24
.gitea/workflows/farm-check.yaml
Normal file
24
.gitea/workflows/farm-check.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
Reference in New Issue
Block a user