NightlyBuilds #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NightlyBuilds | |
env: | |
# Force the stdout and stderr streams to be unbuffered | |
PYTHONUNBUFFERED: 1 | |
"on": | |
schedule: | |
- cron: '13 3 * * *' | |
workflow_dispatch: | |
jobs: | |
RunConfig: | |
runs-on: [self-hosted, style-checker-aarch64] | |
outputs: | |
data: ${{ steps.runconfig.outputs.CI_DATA }} | |
steps: | |
- name: DebugInfo | |
uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- name: Check out repository code | |
uses: ClickHouse/checkout@v1 | |
with: | |
clear-repository: true # to ensure correct digests | |
fetch-depth: 0 # to get version | |
filter: tree:0 | |
- name: PrepareRunConfig | |
id: runconfig | |
run: | | |
echo "::group::configure CI run" | |
python3 "$GITHUB_WORKSPACE/tests/ci/ci.py" --configure --skip-jobs --outfile ${{ runner.temp }}/ci_run_data.json | |
echo "::endgroup::" | |
echo "::group::CI run configure results" | |
python3 -m json.tool ${{ runner.temp }}/ci_run_data.json | |
echo "::endgroup::" | |
{ | |
echo 'CI_DATA<<EOF' | |
cat ${{ runner.temp }}/ci_run_data.json | |
echo 'EOF' | |
} >> "$GITHUB_OUTPUT" | |
BuildDockers: | |
needs: [RunConfig] | |
uses: ./.github/workflows/docker_test_images.yml | |
with: | |
data: "${{ needs.RunConfig.outputs.data }}" | |
set_latest: true | |
CheckWorkflow: | |
if: ${{ !cancelled() }} | |
needs: [RunConfig, BuildDockers] | |
runs-on: [self-hosted, style-checker-aarch64] | |
steps: | |
- name: Check out repository code | |
uses: ClickHouse/checkout@v1 | |
- name: Check Workflow results | |
run: | | |
export WORKFLOW_RESULT_FILE="/tmp/workflow_results.json" | |
cat > "$WORKFLOW_RESULT_FILE" << 'EOF' | |
${{ toJson(needs) }} | |
EOF | |
python3 ./tests/ci/ci_buddy.py --check-wf-status |