Skip to content

Commit

Permalink
Merge branch 'master' into jincong8973
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Sep 27, 2024
2 parents ea3e64d + 39786f7 commit fa45ae3
Show file tree
Hide file tree
Showing 4,901 changed files with 140,763 additions and 49,927 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ At a minimum, the following information should be added (but add more as needed)
- [ ] <!---ci_exclude_tsan|msan|ubsan|coverage--> Exclude: All with TSAN, MSAN, UBSAN, Coverage
- [ ] <!---ci_exclude_aarch64|release|debug--> Exclude: All with aarch64, release, debug
---
- [ ] <!---ci_include_fuzzer--> Run only fuzzers related jobs (libFuzzer fuzzers, AST fuzzers, etc.)
- [ ] <!---ci_exclude_ast--> Exclude: AST fuzzers
---
- [ ] <!---do_not_test--> Do not test
- [ ] <!---woolen_wolfdog--> Woolen Wolfdog
- [ ] <!---upload_all--> Upload binaries for special builds
Expand Down
21 changes: 21 additions & 0 deletions .github/actions/check_workflow/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CheckWorkflowResults

description: Check overall workflow status and post error to slack if any

inputs:
needs:
description: github needs context as a json string
required: true
type: string

runs:
using: "composite"
steps:
- name: Check Workflow
shell: bash
run: |
export WORKFLOW_RESULT_FILE="/tmp/workflow_results.json"
cat > "$WORKFLOW_RESULT_FILE" << 'EOF'
${{ inputs.needs }}
EOF
python3 ./tests/ci/ci_buddy.py --check-wf-status
20 changes: 16 additions & 4 deletions .github/actions/clean/action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
name: Clean runner
description: Clean the runner's temp path on ending
inputs:
images:
description: clean docker images
default: false
type: boolean
runs:
using: "composite"
steps:
- name: Clean
- name: Clean Temp
shell: bash
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 "${{runner.temp}}"
sudo rm -fr "${{runner.temp}}"
- name: Clean Docker Containers
shell: bash
run: |
docker rm -vf $(docker ps -aq) ||:
- name: Clean Docker Images
if: ${{ inputs.images }}
shell: bash
run: |
docker rmi -f $(docker images -aq) ||:
34 changes: 34 additions & 0 deletions .github/actions/debug/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: DebugInfo
description: Prints workflow debug info

runs:
using: "composite"
steps:
- name: Envs, event.json and contexts
shell: bash
run: |
echo '::group::Environment variables'
env | sort
echo '::endgroup::'
echo '::group::event.json'
python3 -m json.tool "$GITHUB_EVENT_PATH"
echo '::endgroup::'
cat << 'EOF'
::group::github context
${{ toJSON(github) }}
::endgroup::
::group::env context
${{ toJSON(env) }}
::endgroup::
::group::runner context
${{ toJSON(runner) }}
::endgroup::
::group::job context
${{ toJSON(job) }}
::endgroup::
EOF
168 changes: 0 additions & 168 deletions .github/actions/release/action.yml

This file was deleted.

111 changes: 0 additions & 111 deletions .github/workflows/auto_release.yml

This file was deleted.

Loading

0 comments on commit fa45ae3

Please sign in to comment.