Commit eff2f510 authored by Antony Kellermann's avatar Antony Kellermann

Add `build_bleeding_edge` job to CircleCI, mimicking the original job except...

Add `build_bleeding_edge` job to CircleCI, mimicking the original job except using the latest Arch Linux docker image.
parent bf4a0900
......@@ -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'
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment