Skip to content

Commit 9f96b71

Browse files
author
Benjamin Délèze
authored
Fix test-suite (#6005)
* upgrade pip and pyopenssl * force workflow * check if the bug has been patched * test better fix * check simpler fix * restore release conditions * fix develop as well
1 parent 05cad28 commit 9f96b71

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test_suite_linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
if: ${{ matrix.os == 'ubuntu-20.04' && (github.event_name == 'push' || github.event_name == 'schedule') }}
7373
run: |
7474
sudo python -m pip install requests PyGithub
75+
pip install pyopenssl --upgrade
7576
scripts/packaging/publish_release.py --key=${{ secrets.GITHUB_TOKEN }} --repo=${{ github.repository }} --branch=${{ github.ref }} --commit=$(git log -1 --format='%H') --tag=${{ github.ref }}
7677
- uses: actions/upload-artifact@v2
7778
if: ${{ contains(github.event.pull_request.labels.*.name, 'test suite') || contains(github.event.pull_request.labels.*.name, 'test ros') || contains(github.event.pull_request.labels.*.name, 'test worlds') }}
@@ -126,7 +127,7 @@ jobs:
126127
name: test-results-${{ matrix.os }}
127128
path: |
128129
tests/
129-
130+
130131
test-ros:
131132
needs: build
132133
if: ${{ contains(github.event.pull_request.labels.*.name, 'test ros') || github.event_name == 'schedule' }}

.github/workflows/test_suite_linux_develop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868
if: ${{ matrix.os == 'ubuntu-20.04' && (github.event_name == 'push' || github.event_name == 'schedule') }}
6969
run: |
7070
sudo python -m pip install requests PyGithub
71+
pip install pyopenssl --upgrade
7172
scripts/packaging/publish_release.py --key=${{ secrets.GITHUB_TOKEN }} --repo=${{ github.repository }} --branch=${{ github.ref }} --commit=$(git log -1 --format='%H') --tag=${{ github.ref }}
7273
- uses: actions/upload-artifact@v2
7374
if: ${{ contains(github.event.pull_request.labels.*.name, 'test suite') || contains(github.event.pull_request.labels.*.name, 'test ros') || contains(github.event.pull_request.labels.*.name, 'test worlds') }}

0 commit comments

Comments
 (0)