]> git.sur5r.net Git - tio/blob - .circleci/config.yml
New upstream version 1.34
[tio] / .circleci / config.yml
1 # Use the latest 2.1 version of CircleCI pipeline process engine.
2 # See: https://circleci.com/docs/2.0/configuration-reference
3 version: 2.1
4
5 # Define a job to be invoked later in a workflow.
6 # See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7 jobs:
8   build-tio:
9     # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
10     # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
11     docker:
12       - image: cimg/base:edge
13     # Add steps to the job
14     # See: https://circleci.com/docs/2.0/configuration-reference/#steps
15     steps:
16       - checkout
17       - run: sudo apt-get -qq update
18       - run: sudo apt-get install -y bash-completion git meson
19       - run: git clone https://github.com/tio/tio.git
20       - run: cd tio && meson build --prefix $HOME/test/tio && ninja -C build install
21
22 # Invoke jobs via workflows
23 # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
24 workflows:
25   build-tio-workflow:
26     jobs:
27       - build-tio