Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Last active September 6, 2021 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FeodorFitsner/3025f6ab0b6600831d136e44f76425fc to your computer and use it in GitHub Desktop.
Save FeodorFitsner/3025f6ab0b6600831d136e44f76425fc to your computer and use it in GitHub Desktop.
appveyor.yml with matrix example for building on Windows, Linux and macOS
environment:
matrix:
- job_name: Windows
QTDIR: C:\Qt\5.10.1\msvc2017_64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- job_name: Linux
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
- job_name: macOS
APPVEYOR_BUILD_WORKER_IMAGE: macOS
matrix:
fast_finish: true
for:
# ======================================
# Windows
# ======================================
-
matrix:
only:
- job_name: Windows
init:
- echo "Init for Windows"
build_script:
- echo "Build for Windows"
test: off
# ======================================
# Linux
# ======================================
-
matrix:
only:
- job_name: Linux
init:
- echo "Init for Linux"
build_script:
- echo "Build for Linux"
test: off
# ======================================
# macOS
# ======================================
-
matrix:
only:
- job_name: macOS
init:
- echo "Init for macOS"
build_script:
- echo "Build for macOS"
test: off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment