🔨 clean up
This commit is contained in:
parent
cfb2f34ebb
commit
3ae7237f5a
1 changed files with 9 additions and 6 deletions
|
@ -12,16 +12,19 @@ jobs:
|
||||||
command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*'
|
command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*'
|
||||||
- run:
|
- run:
|
||||||
name: Install GCC
|
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:
|
- run:
|
||||||
name: Install CMake
|
name: Install CMake
|
||||||
command: 'apt-get update && sudo apt-get install -y cmake'
|
command: 'apt-get update && apt-get install -y cmake'
|
||||||
- run:
|
|
||||||
name: Create build files
|
|
||||||
command: 'mkdir build ; cd build ; cmake ..'
|
|
||||||
- run:
|
- run:
|
||||||
name: Versions
|
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:
|
- run:
|
||||||
name: Compile
|
name: Compile
|
||||||
command: 'cmake --build build'
|
command: 'cmake --build build'
|
||||||
|
|
Loading…
Reference in a new issue