Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
- '[0-9]+\.[0-9]+\.[0-9]+'
- '[0-9]+\.[0-9]+\.[0-9]+\-?[a-zA-Z]*'
- '[0-9]+\.[0-9]+\.[0-9]+\-[A-Za-z0-9]+'

jobs:
docker-release:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/e2e-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
- name: Clean last running results
run: |
rm -rf results
rm -rf "${{ inputs.storage-path }}/${{ inputs.suite-id }}"
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
- name: Run E2E tests with yaml
if: ${{ inputs.test-path == '' }}
run: ./tests/docker/run_tests.sh
Expand All @@ -47,7 +48,7 @@ jobs:
- name: Move results
run: |
results_path="$(pwd)/results/$(readlink results/latest | cut -d'/' -f5)"
rm -rf "${{ inputs.storage-path }}/${{ inputs.suite-id }}";mv "${results_path}" "${{ inputs.storage-path }}/${{ inputs.suite-id }}"
mv "${results_path}" "${{ inputs.storage-path }}/${{ inputs.suite-id }}"
if: ${{ always() }}
shell: bash
- name: Bring down docker containers
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
- '[0-9]+\.[0-9]+\.[0-9]+'
- '[0-9]+\.[0-9]+\.[0-9]+\-?[a-zA-Z]*'
- '[0-9]+\.[0-9]+\.[0-9]+\-[A-Za-z0-9]+'

jobs:
github-release:
Expand Down Expand Up @@ -41,6 +41,7 @@ jobs:

- uses: jakejarvis/s3-sync-action@master
name: s3-upload-latest
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
args: --follow-symlinks --delete
env:
Expand Down