Skip to content

Commit

Permalink
Add build_bleeding_edge job to CircleCI, mimicking the original job…
Browse files Browse the repository at this point in the history
… except using the latest Arch Linux docker image.
  • Loading branch information
aokellermann committed May 26, 2020
1 parent bf4a090 commit eff2f51
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,26 @@ jobs:
- run:
name: Execute test suite
command: 'cd build ; ctest --output-on-failure -j 2'

build_bleeding_edge:
docker:
- image: archlinux

steps:
- checkout

- run:
name: Install required tools
command: 'pacman -S --noconfirm gcc git cmake'
- run:
name: Show versions
command: 'g++ --version ; uname -a; cmake --version'
- run:
name: Run CMake
command: 'mkdir build ; cd build ; cmake ..'
- run:
name: Compile
command: 'cmake --build build'
- run:
name: Execute test suite
command: 'cd build ; ctest --output-on-failure -j 2'

0 comments on commit eff2f51

Please sign in to comment.