mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Upload from separate dir
This commit is contained in:
parent
d353fd1a3d
commit
efaf9e7583
4
.github/workflows/hello-world.yml
vendored
4
.github/workflows/hello-world.yml
vendored
@ -27,9 +27,5 @@ jobs:
|
||||
run: |
|
||||
ls ${{ github.workspace }}
|
||||
ls $RUNNER_TEMP
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: report
|
||||
path: ${{ runner.temp }}/report.html
|
||||
- run: ls -la $RUNNER_TEMP
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
|
@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
from report import create_test_html_report
|
||||
import shutil
|
||||
import logging
|
||||
import subprocess
|
||||
import os
|
||||
@ -81,7 +82,7 @@ def get_pr_url_from_ref(ref):
|
||||
if __name__ == "__main__":
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
repo_path = os.getenv("GITHUB_WORKSPACE", os.path.abspath("../../"))
|
||||
temp_path = os.getenv("RUNNER_TEMP", os.path.abspath("./temp"))
|
||||
temp_path = os.path.join(os.getenv("RUNNER_TEMP", os.path.abspath("./temp")), 'style_check')
|
||||
run_id = os.getenv("GITHUB_RUN_ID", 0)
|
||||
commit_sha = os.getenv("GITHUB_SHA", 0)
|
||||
ref = os.getenv("GITHUB_REF", "")
|
||||
@ -94,6 +95,9 @@ if __name__ == "__main__":
|
||||
|
||||
s3_helper = S3Helper('https://storage.yandexcloud.net', aws_access_key_id=aws_secret_key_id, aws_secret_access_key=aws_secret_key)
|
||||
|
||||
if os.path.exists(temp_path):
|
||||
shutil.rmtree(temp_path)
|
||||
|
||||
if not os.path.exists(temp_path):
|
||||
os.makedirs(temp_path)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user