1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-27 17:18:33 +00:00

Use mkdir -p.

This commit is contained in:
Brenden Matthews 2021-02-28 17:46:53 -06:00
parent 783ebc269c
commit 59eb71b65a
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD

View File

@ -100,7 +100,7 @@ builder fedora-33 clang-11: *docker_builder
stage: build stage: build
script: script:
- "echo \"Distro: ${DISTRO}\nCompiler: ${COMPILER}\nCC: $CC\nCXX: $CXX\"" - "echo \"Distro: ${DISTRO}\nCompiler: ${COMPILER}\nCC: $CC\nCXX: $CXX\""
- mkdir build - mkdir -p build
- cd build - cd build
- > - >
cmake cmake
@ -240,7 +240,7 @@ fedora-33 clang-11:
.test_run: &test_run .test_run: &test_run
script: script:
- "echo \"Distro: ${DISTRO}\nCompiler: ${COMPILER}\nCC: $CC\nCXX: $CXX\"" - "echo \"Distro: ${DISTRO}\nCompiler: ${COMPILER}\nCC: $CC\nCXX: $CXX\""
- mkdir build - mkdir -p build
- cd build - cd build
- | - |
cmake \ cmake \
@ -379,7 +379,7 @@ check clang-tidy:
CC: clang-11 CC: clang-11
CXX: clang++-11 CXX: clang++-11
script: script:
- mkdir build - mkdir -p build
- cd build - cd build
- > - >
cmake cmake
@ -397,7 +397,7 @@ check clang-format:
CC: clang-11 CC: clang-11
CXX: clang++-11 CXX: clang++-11
script: script:
- mkdir build - mkdir -p build
- cd build - cd build
- > - >
cmake cmake