GithubHelp home page GithubHelp logo

classicvalues / ci_playground Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bfgroup/ci_playground

1.0 1.0 0.0 173 KB

Playground for Cloud CI development for C++

License: Boost Software License 1.0

Shell 67.90% C++ 9.59% Batchfile 22.51%

ci_playground's Introduction

Continuous Integration Playground

This is a "playground" for testing out basic methods to get Cloud CI systems working with minimal effort. Not just getting any CI working, but specifically getting C++ to work in CI.

Goals

This project is of limited scope. In particular it follows these goals:

C++: Sufficient support to install and use a C++ toolset to compile and run C++ programs.

Free: We only consider services that are available to use for free to some capacity. This usually means that the compute resources and features are limited.

Simple: The configurations are as simple as possible to get specific toolsets working and nothing more. This means there is no build system setup. And the few small scripts used are there to minimize duplication.

DRY: The configurations try to avoid repeated definitions as much as is possible within the restrictions of the particular service.

General Configuration

All the included services are configured through configuration files included in the source repository. Consult the individual service descriptions below for what those files are.

Setup Scripts

In order to avoid duplication we use some minimal install and setup scripts instead of including all the commands in the service configurations themselves.

<root>/.ci_playground/linux-cxx-install.sh

Will install a set of packages indicated in the service configuration environment variable PACKAGES. That can be any set of packages, i.e. both compilers and support packages. Additionally it can set up the LLVM APT repository through LLVM_OS and LLVM_VER environment variables.

<root>/.ci_playground/macos-xcode-install.sh

Finds the indicated Xcode, in the XCODE_VERSION environment variable, present in the /Applications directory and sets it as the active Xcode. Alternatively, uses xcode-install tool to install and/or setup Xcode as indicated in the XCODE_VERSION environment variable. See below for additional setup needed for the install to work.

<root>/.ci_playground/windows-msvc-setup.cmd

Uses the vswhere utility to find the indicated, in the VSWHERE_VERSION or VSWHERE_LEGACY environment variables, and to run the vcvarsall.bat setup script. The vcvarsall.bat script from Visual Studio will set up the execution environment for calling cl.exe to compile directly.

macOS Xcode

Setting up Xcode is simply a matter of setting the XCODE_VERSION env variable to the version to be tested. The setup script will search through the pre-installed Xcode installations in the /Applications directory.

Optionally there’s support for using the great work of the Fastlane developers and the xcode-install tool. It makes setting up consistent Xcode installs easy. Additionally it makes it possible to fresh install a full Xcode and command line tools.

Without any additional configuration we use xcode-install to select which Xcode version to use. But, by setting up Apple Developer credentials we can use it to download and install additional Xcode versions (within the limits of macOS and Xcode compatibility constraints). The setup amounts to setting two environment variables:

XCODE_INSTALL_USER

User name for Apple Developer account.

XCODE_INSTALL_PASSWORD

Password, or token, for the account.

Check below for how those variables are defined for specific services.

Warning
The support for using xcode-install is no longer tested as Apple has made it almost impossible to access their services within automation programs.

Services

The cloud Ci services vary in features from each other but generally they all provide equivalent free services. One big difference though is what platforms they include in their free offerings. Universally, Linux resources are freely available. Some offer Windows resources to some extent. Additionally some offer macOS resources, but usually this is behind a paid subscription. We also only include services that support the GitHub revision control service.

Below we only discuss the resources available in the free tiers of the services.

Configuration

<root>/appveyor.yml

AppVeyor provides CI resources for Linux, macOS, and Windows. For Windows they provide a large array of pre-configured tools. For macOS, and hence Xcode, to make use of the xcode-install tool you will need to create a secure value for both XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD. And place the secure values in the appveyor.yml file.

Microsoft Azure Pipelines offers Linux, macOS, and Windows resources. For using xcode-install Azure Pipelines doesn’t provide for a direct way of setting the credential environment variables we need. Instead we need to define secret variables that we use to set the environment variables from. Define DEV_APPLE_USER and DEV_APPLE_PASSWORD secret variables corresponding to XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD.

CircleCI only gives us only Linux systems for free. Having the configuration file is the only setup needed for CircleCI.

Of the current cloud CI offerings Cirrus CI is different in that it offers FreeBSD public VMs. Cirrus CI provides "community clusters" that also include Linux, macOS, and Windows. Unfortunately getting macOS Xcode and Visual Studio installed is currently not possible.

Configuration

<root>/.cirrus.yml

Configuration

<root>/.drone.star

Free cloud access is available for Linux on Drone. There are a few ways to go with the configuration in Drone. The main configuration, like others, is done through a yaml file (<root>/.drone.yml). But for our use case, where we want to do the same thing for many different toolsets, it means lots of duplication as it has no built-in support for DRY. Drone does support alternate, programmatic, methods for specifying the configuration with either Jsonnet or Starlark scripting. For this we use a Starlark script to create all the toolset variations. To make it work one needs to point Drone to the alternate configuration script in the project settings.

GitHub Actions provides Linux, macOS, and Windows host resources to test with. There isn’t any setup past creating at least one "workflow" configuration file. Multiple workflows are supported if you want to segregate your builds. For our case we only need the one configuration file. To use xcode-install GitHub Actions provides a way to define account global secrets that can be extracted in the YAML configuration. In our case we define dev_apple_user and dev_apple_password secret variables corresponding to XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD in your account.

Semaphore gives us Linux and macOS free build capabilities. The configuration specification is a bit different than other CI systems in some ways though. It doesn’t support any built-in way to reuse setups (i.e. to stay DRY). And the usual YAML method of using the << map merge key is not allowed as the configuration is strictly checked against a schema. For our case we create some dummy (i.e. skipped) blocks that we can use to apply the *name YAML expansion with. Which reduces much of the repetition. To use xcode-install one can define global account "Secrets" in the web UI for encrypted environment variables. Define DEV_APPLE_USER and DEV_APPLE_PASSWORD encrypted variables corresponding to XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD in your account as a dev-apple secret.

Configuration

<root>/.travis.yml

Travis CI provides Linux, macOS, and experimental Windows support. Although we don’t have Windows as part of our configuration yet (soon). The Travis CI configuration is perhaps the simples of all the CI systems. As one can precisely define each variation to build individually. For using xcode-install Travis CI allows one to set encrypted environment variables. Define DEV_APPLE_USER and DEV_APPLE_PASSWORD encrypted variables corresponding to XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD in your project.

This work is Copyright René Ferdinand Rivera Morell 2020-2021. And distributed, and subject to, the Boost Software License, Version 1.0.

ci_playground's People

Contributors

grafikrobot avatar

Stargazers

Classic Values avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.