We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a9130e commit f243c5cCopy full SHA for f243c5c
.github/workflows/cmake.yml
@@ -20,10 +20,11 @@ jobs:
20
- name: Create Build Environment
21
# Some projects don't allow in-source building, so create a separate build directory
22
# We'll use this as our working directory for all subsequent commands
23
- run: sudo apt-get update -y
24
- run: sudo apt-get upgrade -y
25
- run: sudo apt-get install libeigen3-dev
26
- run: cmake -E make_directory ${{runner.workspace}}/build
+ run:
+ - sudo apt-get update -y
+ - sudo apt-get upgrade -y
+ - sudo apt-get install libeigen3-dev
27
+ - cmake -E make_directory ${{runner.workspace}}/build
28
29
- name: Configure CMake
30
# Use a bash shell so we can use the same syntax for environment variable
0 commit comments