FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
testcontainers-java/.github/workflows/ci.yml at master · hmatt1/testcontainers-java · GitHub
hmatt1
/
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
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
78 lines (75 loc) · 2.91 KB
Breadcrumbs
testcontainers-java
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
78 lines (75 loc) · 2.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name
:
CI
on
:
pull_request
:
{}
push
:
{ branches: [ master ] }
env
:
AWS_ACCESS_KEY_ID
:
${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY
:
${{ secrets.AWS_SECRET_ACCESS_KEY }}
GRADLE_ENTERPRISE_ACCESS_KEY
:
${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
GRADLE_ENTERPRISE_CACHE_PASSWORD
:
${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
jobs
:
thundra_test_initializer
:
runs-on
:
ubuntu-latest
outputs
:
thundra_agent_testrun_id
:
${{ steps.thundra_test_initializer.outputs.thundra_agent_testrun_id }}
steps
:
-
uses
:
actions/checkout@v3
-
id
:
thundra_test_initializer
uses
:
thundra-io/thundra-test-init-action@v1
find_gradle_jobs
:
runs-on
:
ubuntu-18.04
outputs
:
matrix
:
${{ steps.set-matrix.outputs.matrix }}
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/setup-java@v3
with
:
java-version
:
'
8.0.302
'
distribution
:
temurin
-
name
:
Cache Gradle Home files
uses
:
actions/cache@v3.0.1
with
:
path
:
~/.gradle/caches
key
:
${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
-
id
:
set-matrix
env
:
#
Since we override the tests executor,
#
we should not push empty results to the cache
READ_ONLY_REMOTE_GRADLE_CACHE
:
true
run
:
|
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix)
echo $TASKS
echo "::set-output name=matrix::{\"gradle_args\":$TASKS}"
check
:
needs
:
[find_gradle_jobs, thundra_test_initializer]
strategy
:
fail-fast
:
false
matrix
:
${{ fromJson(needs.find_gradle_jobs.outputs.matrix) }}
runs-on
:
ubuntu-18.04
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/setup-java@v3
with
:
java-version
:
'
8.0.302
'
distribution
:
temurin
-
name
:
Cache Gradle Home files
uses
:
actions/cache@v3.0.1
continue-on-error
:
true
with
:
path
:
~/.gradle/caches
key
:
${{ runner.os }}-gradle-home-${{matrix.gradle_args}}_check-${{ hashFiles('**/*.gradle') }}
-
name
:
Clear existing docker image cache
run
:
docker image prune -af
-
name
:
Thundra Gradle Test Instrumentation
if
:
${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses
:
thundra-io/thundra-gradle-test-action@v1
with
:
apikey
:
${{ secrets.THUNDRA_API_KEY }}
project_id
:
${{ secrets.THUNDRA_PROJECT_ID }}
-
name
:
Build and test with Gradle (${{matrix.gradle_args}})
run
:
|
./gradlew --no-daemon --continue --scan ${{matrix.gradle_args}} \
$([[ -f $THUNDRA_GRADLE_INIT_SCRIPT_PATH ]] && echo "--init-script $THUNDRA_GRADLE_INIT_SCRIPT_PATH")
env
:
THUNDRA_AGENT_TEST_RUN_ID
:
${{ needs.thundra_test_initializer.outputs.thundra_agent_testrun_id }}
THUNDRA_AGENT_REPORT_REST_BASEURL
:
https://collector.thundra.us/v1
Back
|
FazBrowse Home
|
New Git URL