diff --git a/.circleci/config.yml b/.circleci/config.yml index f83d3016f3..a1672f64c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -141,7 +141,12 @@ jobs: or: - equal: [ *rocky8-executor, << parameters.os >> ] steps: - - run: curl https://nodejs.org/dist/v10.24.1/node-v10.24.1-linux-x64.tar.xz | tar -xJC /usr/local + - run: pushd $HOME && rm -f chromedriver_linux64.zip && wget https://chromedriver.storage.googleapis.com/106.0.5249.61/chromedriver_linux64.zip && popd + - run: + name: 'Bodge the nodejs version to run an older one for the webdriver tests' + command: | + curl https://nodejs.org/dist/v10.24.1/node-v10.24.1-linux-x64.tar.xz | tar -xJC /usr/local + chown root:root -R /usr/local/node-v10.24.1-linux-x64 - run: pushd ./tests/ui && PATH=/usr/local/node-v10.24.1-linux-x64/bin:$PATH /usr/local/node-v10.24.1-linux-x64/bin/npm install && popd - run: PATH=/usr/local/node-v10.24.1-linux-x64/bin:$PATH ./tests/ui/runtests.sh --headless --log-junit ~/phpunit - run: