🔨 clean up

This commit is contained in:
Niels Lohmann 2020-05-01 21:01:47 +02:00
parent cfb2f34ebb
commit 3ae7237f5a
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -12,16 +12,19 @@ jobs:
command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*'
- run:
name: Install GCC
command: 'apt-get update && apt-get install -y gcc g++ git'
command: 'apt-get update && apt-get install -y gcc g++'
- run:
name: Install Git
command: 'apt-get update && apt-get install -y git'
- run:
name: Install CMake
command: 'apt-get update && sudo apt-get install -y cmake'
- run:
name: Create build files
command: 'mkdir build ; cd build ; cmake ..'
command: 'apt-get update && apt-get install -y cmake'
- run:
name: Versions
command: 'g++ --version ; uname -a'
command: 'g++ --version ; uname -a; cmake --version'
- run:
name: Run CMake
command: 'mkdir build ; cd build ; cmake ..'
- run:
name: Compile
command: 'cmake --build build'