Compare commits

...

3 Commits

Author SHA1 Message Date
Dimitrios Vasilas 518cbe080b pin virtualenv to 20.21 2023-05-09 12:15:00 +02:00
Dimitrios Vasilas 5ffb409bd5 move python2 setup before node setup 2023-05-09 12:06:37 +02:00
Dimitrios Vasilas 49b31a1bf9 remove install of docker-compose 2023-05-09 11:41:44 +02:00
1 changed files with 8 additions and 11 deletions

View File

@ -16,13 +16,6 @@ runs:
run: |-
set -exu;
mkdir -p /tmp/artifacts/${JOB_NAME}/;
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: install dependencies
shell: bash
run: yarn install --ignore-engines --frozen-lockfile --network-concurrency 1
- uses: actions/cache@v2
with:
path: ~/.cache/pip
@ -32,14 +25,18 @@ runs:
python-version: |
2.7
3.9
- name: Install python deps
shell: bash
run: pip install docker-compose
- name: Setup python2 test environment
shell: bash
run: |
sudo apt-get install -y libdigest-hmac-perl
pip install virtualenv
pip install 'virtualenv==20.21'
virtualenv -p $(which python2) ~/.virtualenv/py2
source ~/.virtualenv/py2/bin/activate
pip install 's3cmd==1.6.1'
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: install dependencies
shell: bash
run: yarn install --ignore-engines --frozen-lockfile --network-concurrency 1