cicd: add -f to rm
This commit is contained in:
parent
b61b3f543d
commit
8d9d829758
|
@ -75,7 +75,7 @@ steps:
|
||||||
- name: py
|
- name: py
|
||||||
path: /opt/venv/
|
path: /opt/venv/
|
||||||
commands:
|
commands:
|
||||||
- rm -rv ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which gcc)
|
- export CC=$(which gcc)
|
||||||
- export CXX=$(which g++)
|
- export CXX=$(which g++)
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ steps:
|
||||||
- name: py
|
- name: py
|
||||||
path: /opt/venv/
|
path: /opt/venv/
|
||||||
commands:
|
commands:
|
||||||
- rm -rv ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which clang)
|
- export CC=$(which clang)
|
||||||
- export CXX=$(which clang++)
|
- export CXX=$(which clang++)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue