Skip to content

Commit

Permalink
Adjust test to new github action version.
Browse files Browse the repository at this point in the history
  • Loading branch information
falkzoll committed Oct 6, 2023
1 parent a2eec3a commit 47c8941
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
- name: setup docker version
run: |
set -x
dpkg -l
#dpkg -l
cat /etc/docker/daemon.json || true
apt-cache policy docker-ce
#apt-cache policy docker-ce
#sudo apt-get -y install docker-ce=18.06.3~ce~3-0~ubuntu
#sudo apt-get -y install docker-ce=20.10.24~3-0~ubuntu
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ class ActionLimitsTests extends TestHelpers with WskTestHelpers with WskActorSys
// * With the introduction of Node.js 10, this was changed from "openFileLimit - 15" to
// "openFileLimit - 20".
// * With Docker 18.09.3, we observed test failures and changed to "openFileLimit - 24".
val minExpectedOpenFiles = openFileLimit - 24
// * With github action runner ubuntu-22.04 Version 20231001.1.0
// (https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20231001.1)
// the maximum number of open files changed to "openFileLimit - 26".
val minExpectedOpenFiles = openFileLimit - 26

val retriesOnTestFailures = 5
val waitBeforeRetry = 1.second
Expand Down

0 comments on commit 47c8941

Please sign in to comment.