Skip to content

Commit

Permalink
chore: ensure action job always
Browse files Browse the repository at this point in the history
Signed-off-by: wangxye <[email protected]>
  • Loading branch information
wangxye committed Nov 20, 2023
1 parent 0801547 commit d86cc90
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
if: always()
timeout-minutes: 30
outputs:
version-json: ${{ steps.build_images.outputs.nightly-version }}
Expand Down Expand Up @@ -55,6 +56,7 @@ jobs:
echo "nightly-version=$VERSION" >> $GITHUB_OUTPUT
deploy:
if: ${{ success() }}
name: Deploy AutoMQ for RocketMQ
needs: [build]
runs-on: private-k3s
Expand Down Expand Up @@ -92,6 +94,7 @@ jobs:
run_e2e_grpc_java:
if: ${{ success() }}
name: Run e2e test for grpc java
needs: [ build, deploy ]
runs-on: private-k3s
Expand Down Expand Up @@ -134,6 +137,7 @@ jobs:
path: testlog.txt

run_e2e_remoting_java:
if: ${{ success() }}
name: Run e2e test for remoting java
needs: [ build, deploy ]
runs-on: private-k3s
Expand Down Expand Up @@ -182,7 +186,8 @@ jobs:


clean:
name: Clean
if: always()
name: Clean AutoMQ for RocketMQ
needs: [deploy, run_e2e_grpc_java, run_e2e_remoting_java]
runs-on: private-k3s
timeout-minutes: 60
Expand Down

0 comments on commit d86cc90

Please sign in to comment.