Skip to content

Commit

Permalink
update ssl-e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xdu-chenrj committed Oct 21, 2024
1 parent edbe7aa commit e9038fd
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/ssl-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ jobs:
restore-keys: ${{ runner.os }}-maven-
- name: Build Image
run: |
./mvnw -B clean package \
./mvnw -B clean package -o \
-Dmaven.test.skip=true \
-Dspotless.skip=true \
-Pdocker,staging -Ddocker.tag=ci
- name: Export Docker Images
run: |
components=("master" "worker" "api" "tools" "alert-server")
components=("master" "worker" "api" "alert-server")
for component in "${components[@]}"; do
docker save apache/dolphinscheduler-${component}:ci -o /tmp/${component}-image.tar \
&& du -sh /tmp/${component}-image.tar
Expand All @@ -110,12 +110,6 @@ jobs:
name: api-image-e2e
path: /tmp/api-image.tar
retention-days: 1
- uses: actions/upload-artifact@v4
name: Upload tool Docker Images
with:
name: tool-image-e2e
path: /tmp/tools-image.tar
retention-days: 1
- uses: actions/upload-artifact@v4
name: Upload alert-server Docker Images
with:
Expand Down Expand Up @@ -172,12 +166,6 @@ jobs:
name: api-image-e2e
path: /tmp/api-image.tar
retention-days: 1
- uses: actions/download-artifact@v4
name: download tool Docker Images
with:
name: tool-image-e2e
path: /tmp/tools-image.tar
retention-days: 1
- uses: actions/download-artifact@v4
name: download alert-server Docker Images
with:
Expand All @@ -187,7 +175,7 @@ jobs:

- name: Load Docker Images
run: |
components=("master" "worker" "api" "tools" "alert-server")
components=("master" "worker" "api" "alert-server")
for component in "${components[@]}"; do
docker load -i /tmp/${component}-image.tar
done
Expand Down

0 comments on commit e9038fd

Please sign in to comment.