Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: limit max-parallel to 8 #321

Merged
merged 3 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/composite/setup_entrypoints/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
required: true
wait_time:
description: Time to wait for sshnpd to start
default: "4"
default: "7"

runs:
using: composite
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/end2end_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: end2end_tests

permissions:
contents: read

on:
workflow_dispatch:
push:
Expand Down Expand Up @@ -32,10 +35,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 8
matrix:
np: [local, trunk]
npd: [local, trunk]
wait: [4]
exclude:
# Don't run these against themselves, they're irrelevant
- np: trunk
Expand All @@ -46,39 +49,33 @@ jobs:
# npd: local
# rvd: local
# rvd_atsign: "@8485wealthy51"
# wait: 4

- np: latest
npd: latest
rvd: local
rvd_atsign: "@8485wealthy51"
wait: 4

### BACKWARD TESTS WITHOUT SYNC ###
- np: local
npd: latest
wait: 4

- np: latest
npd: local
wait: 4

- np: local
npd: v3.3.0
wait: 4

- np: v3.3.0
npd: local
wait: 4

### BACKWARD TESTS WHICH NEED SYNC ###
- np: local
npd: v3.1.2
wait: 60
wait: 120

- np: local
npd: v3.2.0
wait: 60
wait: 120

- np: v3.1.2
npd: local
Expand Down