From 248a27b2c2893695949deaab7c910cbc0b623649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Wed, 25 Mar 2020 12:42:03 +0000 Subject: [PATCH] fixed ordering of commands to test git pull --- scripts/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/benchmark.py b/scripts/benchmark.py index 3d0757b..35de04a 100755 --- a/scripts/benchmark.py +++ b/scripts/benchmark.py @@ -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'),