FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
testcontainers-java/azure-pipelines.yml at main · ghostofthecode/testcontainers-java · GitHub
ghostofthecode
/
testcontainers-java
Public
forked from
testcontainers/testcontainers-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
testcontainers-java
/
azure-pipelines.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (35 loc) · 1.16 KB
Breadcrumbs
testcontainers-java
/
azure-pipelines.yml
Copy path
File metadata and controls
38 lines (35 loc) · 1.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
jobs
:
-
job
:
core_tests
timeoutInMinutes
:
60
steps
:
#
Run all core tests when running the Windows CI tests
-
task
:
Gradle@2
condition
:
eq(variables['Agent.OS'], 'Windows_NT')
displayName
:
Build & test (Windows - core)
env
:
AWS_ACCESS_KEY_ID
:
$(aws.accessKeyId)
AWS_SECRET_ACCESS_KEY
:
$(aws.secretAccessKey)
inputs
:
gradleWrapperFile
:
'
gradlew
'
jdkVersionOption
:
'
1.8
'
options
:
'
--no-daemon --continue
'
tasks
:
'
clean testcontainers:check
'
publishJUnitResults
:
true
testResultsFiles
:
'
**/TEST-*.xml
'
-
job
:
other_tests
timeoutInMinutes
:
120
steps
:
#
Run all non-core tests when running the Windows CI tests
-
task
:
Gradle@2
condition
:
eq(variables['Agent.OS'], 'Windows_NT')
displayName
:
Build & test (Windows - all non-core modules)
env
:
AWS_ACCESS_KEY_ID
:
$(aws.accessKeyId)
AWS_SECRET_ACCESS_KEY
:
$(aws.secretAccessKey)
inputs
:
gradleWrapperFile
:
'
gradlew
'
jdkVersionOption
:
'
1.8
'
options
:
'
--no-daemon --continue
'
tasks
:
'
clean check -x testcontainers:test
'
publishJUnitResults
:
true
testResultsFiles
:
'
**/TEST-*.xml
'
Back
|
FazBrowse Home
|
New Git URL