Skip to content

Commit

Permalink
Ryan assures me that I did it right this time.
Browse files Browse the repository at this point in the history
I promise.

(fingers crosseD)
  • Loading branch information
jpwhite4 committed Mar 28, 2023
1 parent 0eb63cb commit 5a41e4d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5a41e4d

Please # to comment.