Skip to content

Commit 9413e58

Browse files
Simplified the build (no docker deployment)
1 parent 8220249 commit 9413e58

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

.github/workflows/build.yml

+4-14
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
- name: Grant execute permission for Gradle
3232
run: chmod +x gradlew
3333

34-
- name: Build with Gradle without GH acceptance tests
34+
- name: Build with Gradle including acceptance tests
3535
env:
3636
GH_TOKEN: ""
3737
run: ./gradlew build
3838

39-
docker:
39+
acceptanceTests:
4040
needs: build
4141
runs-on: ubuntu-latest
4242
if: github.event_name == 'push' # Don't run for PRs
@@ -51,17 +51,7 @@ jobs:
5151
distribution: 'temurin'
5252
java-version: '17'
5353

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
5855
env:
5956
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"

src/test/java/io/micrometer/release/single/GithubActionsAcceptanceTests.java src/test/java/io/micrometer/release/single/GithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
import static org.assertj.core.api.Assertions.assertThat;
2828

29-
class GithubActionsAcceptanceTests implements GithubActions {
29+
class GithubActionsE2eTests implements GithubActions {
3030

3131
@BeforeAll
3232
static void should_go_through_whole_flow() {

src/test/java/io/micrometer/release/train/GithubActionsAcceptanceTests.java src/test/java/io/micrometer/release/train/GithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import static org.assertj.core.api.Assertions.assertThat;
3131

32-
class GithubActionsAcceptanceTests implements GithubActions {
32+
class GithubActionsE2eTests implements GithubActions {
3333

3434
@BeforeAll
3535
static void should_go_through_whole_flow() {

0 commit comments

Comments
 (0)