1
0
Fork 0

fixed ordering of commands to test git pull

This commit is contained in:
Christian Kühnel 2020-03-25 12:42:03 +00:00
parent 1df9edbd78
commit 248a27b2c2

View file

@ -61,8 +61,8 @@ class Remove(Cmd):
COMMANDS = [
Cmd('git clone https://github.com/llvm/llvm-project .', 'git clone'),
Cmd('git checkout release/10.x', 'git checkout release'),
Cmd('git checkout {commit}'),
Cmd('git pull', 'git pull'),
Cmd('git checkout {commit}'),
# clean build, make sure ccache (or similar) is empty
Cmd('{pmt_root_path}/scripts/run_cmake.py', 'cmake 1st'),
Cmd('{pmt_root_path}/scripts/run_ninja.py all', 'ninja all 1st'),