Skip to content

Commit

Permalink
Update release_branches.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MyroTk authored Aug 9, 2023
1 parent 83b4f02 commit 0ae7b4b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/release_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,43 @@ jobs:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
#############################################################################################
###################################### STRESS TESTS #########################################
#############################################################################################
StressTest:
needs: [tests_start]
runs-on: [self-hosted, stress-tester, on-demand, type-ccx52, image-x86-app-docker-ce]
timeout-minutes: 180
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/stress_thread
REPORTS_PATH=${{runner.temp}}/reports_dir
CHECK_NAME=Stress test (release)
REPO_COPY=${{runner.temp}}/stress_thread/ClickHouse
EOF
- name: Download json reports
uses: actions/download-artifact@v3
with:
path: ${{ env.REPORTS_PATH }}
- name: Check out repository code
uses: ClickHouse/checkout@v1
with:
clear-repository: true
- name: Integration test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
#############################################################################################
##################################### REGRESSION TESTS ######################################
#############################################################################################
regression_start:
Expand Down Expand Up @@ -1147,6 +1184,7 @@ jobs:
# - FunctionalStatefulTestAarch64
- IntegrationTestsRelease0
- IntegrationTestsRelease1
- StressTest
- CompatibilityCheck
- SignRelease
- regression_common
Expand Down

0 comments on commit 0ae7b4b

Please sign in to comment.