File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1717 needs : [ build-project ]
1818 uses : ./.github/workflows/run-tests-default.yml
1919
20+ asn1-tests :
21+ needs : [ build-project ]
22+ uses : ./.github/workflows/run-tests-asn1.yml
23+
2024 compatibility-tests :
21- needs : [ default-tests ]
25+ needs : [ default-tests, asn1-tests ]
2226 uses : ./.github/workflows/run-tests-compatibility.yml
2327
2428 slow-tasks :
Original file line number Diff line number Diff line change 1+ name : Run ASN.1 tests
2+ on :
3+ workflow_dispatch :
4+ workflow_call :
5+
6+ defaults :
7+ run :
8+ shell : bash
9+
10+ jobs :
11+ asn1-tests :
12+ runs-on : ubuntu-latest
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ task :
17+ - ' :cryptography-serialization-asn1:jvmTest'
18+ - ' :cryptography-serialization-asn1:jsTest'
19+ - ' :cryptography-serialization-asn1:wasmJsNodeTest'
20+ - ' :cryptography-serialization-asn1:linuxX64Test'
21+ - ' :cryptography-serialization-asn1-modules:jvmTest'
22+ - ' :cryptography-serialization-asn1-modules:jsTest'
23+ - ' :cryptography-serialization-asn1-modules:wasmJsNodeTest'
24+ - ' :cryptography-serialization-asn1-modules:linuxX64Test'
25+ steps :
26+ - uses : actions/checkout@v4
27+ - uses : ./.github/actions/setup-environment
28+ - name : Run ${{ matrix.task }}
29+ run : ./gradlew -q ${{ matrix.task }} --continue
30+
You can’t perform that action at this time.
0 commit comments