Skip to content

Commit

Permalink
[type:feat] update shenyu k8s yml
Browse files Browse the repository at this point in the history
  • Loading branch information
moremind committed Sep 25, 2023
1 parent 0173f53 commit 90ef27b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/e2e-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
list-files: json

build-docker-images:
needs: changes
if: ${{ needs.changes.outputs.e2e == 'true' }}
# needs: changes
# if: ${{ needs.changes.outputs.e2e == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -59,15 +59,6 @@ jobs:
rm --recursive --force "$AGENT_TOOLSDIRECTORY"
df --human-readable
- name: Restore ShenYu E2E Maven Repos
id: restore-e2e-maven-cache
uses: actions/cache/restore@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-e2e-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-e2e-maven-
- name: Set up JDK 8 for Building ShenYu
uses: actions/setup-java@v3
with:
Expand All @@ -80,6 +71,15 @@ jobs:
filters: '.github/filters.yml'
list-files: json

- name: Restore ShenYu E2E Maven Repos
id: restore-e2e-maven-cache
uses: actions/cache/restore@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-e2e-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-e2e-maven-
- name: Build with Maven
if: steps.filter.outputs.changed == 'true'
run: ./mvnw -B clean install -Prelease,docker -Dmaven.javadoc.skip=true -B -Drat.skip=true -Dmaven.test.skip=true -Djacoco.skip=true -DskipITs -DskipTests package -T1C
Expand Down

0 comments on commit 90ef27b

Please sign in to comment.