👷 full workflow

parent ecf4d5e9
...@@ -8,9 +8,20 @@ jobs: ...@@ -8,9 +8,20 @@ jobs:
- checkout - checkout
- run: - run:
name: Greeting name: Install sudo
command: echo Hello, world. 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++'
- run:
name: Install CMake
command: 'apt-get update && sudo apt-get install -y cmake'
- run:
name: Create build files
command: 'cmake -Bbuild'
- run:
name: Compile
command: 'cmake --build build'
- run: - run:
name: Print the Current Time name: Execute test suite
command: date command: 'cd build ; ctest'
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