January 2019
Intermediate to advanced
520 pages
14h 32m
English
AppVeyor is a CI service for Linux and Windows. It's also free for open source projects and provides good integration with GitHub. To start using this service, you have to add an appveyor.yml file to your project. Let's look at the example configuration:
os: Visual Studio 2015environment: matrix: - channel: stable target: x86_64-pc-windows-msvc - channel: nightly target: i686-pc-windows-msvc - channel: stable target: x86_64-pc-windows-gnu - channel: nightly target: i686-pc-windows-gnu
The configuration looks similar to the configuration for TravisCI. We also created a matrix of builds and will use MSVC and GNU toolchains for stable and nightly compiler versions. After this, we use these values to install the required tools using ...
Read now
Unlock full access