File tree 3 files changed +6
-16
lines changed
src/test/java/io/micrometer/release
3 files changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ jobs:
31
31
- name : Grant execute permission for Gradle
32
32
run : chmod +x gradlew
33
33
34
- - name : Build with Gradle without GH acceptance tests
34
+ - name : Build with Gradle including acceptance tests
35
35
env :
36
36
GH_TOKEN : " "
37
37
run : ./gradlew build
38
38
39
- docker :
39
+ acceptanceTests :
40
40
needs : build
41
41
runs-on : ubuntu-latest
42
42
if : github.event_name == 'push' # Don't run for PRs
51
51
distribution : ' temurin'
52
52
java-version : ' 17'
53
53
54
- - name : Login to Docker Hub
55
- run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin
56
-
57
- - name : Build with Gradle including acceptance tests
54
+ - name : Run e2e tests
58
55
env :
59
56
GH_TOKEN : ${{ secrets.GH_TOKEN }}
60
- run : ./gradlew build
61
-
62
- - name : Build and push Docker image with Jib
63
- run : ./gradlew jib
64
- env :
65
- DOCKER_HUB_REPO : " mgrzejszczak/micrometer-release"
66
- DOCKER_HUB_USERNAME : ${{ secrets.DOCKER_HUB_USERNAME }}
67
- DOCKER_HUB_TOKEN : ${{ secrets.DOCKER_HUB_TOKEN }}
57
+ run : ./gradlew test --tests "*E2eTests"
Original file line number Diff line number Diff line change 26
26
27
27
import static org .assertj .core .api .Assertions .assertThat ;
28
28
29
- class GithubActionsAcceptanceTests implements GithubActions {
29
+ class GithubActionsE2eTests implements GithubActions {
30
30
31
31
@ BeforeAll
32
32
static void should_go_through_whole_flow () {
Original file line number Diff line number Diff line change 29
29
30
30
import static org .assertj .core .api .Assertions .assertThat ;
31
31
32
- class GithubActionsAcceptanceTests implements GithubActions {
32
+ class GithubActionsE2eTests implements GithubActions {
33
33
34
34
@ BeforeAll
35
35
static void should_go_through_whole_flow () {
You can’t perform that action at this time.
0 commit comments