-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Pin actions to hash (cron-ci.yaml) #7686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+25
−4
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,201 +1,222 @@ | ||
| name: Periodic checks/tasks | ||
|
|
||
| on: | ||
| schedule: | ||
| - cron: "0 0 * * 6" | ||
| workflow_dispatch: | ||
| push: | ||
| paths: | ||
| - .github/workflows/cron-ci.yaml | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| paths: | ||
| - .github/workflows/cron-ci.yaml | ||
|
|
||
| name: Periodic checks/tasks | ||
|
|
||
| env: | ||
| CARGO_ARGS: --no-default-features --features stdlib,importlib,stdio,encodings,ssl-rustls,jit,host_env | ||
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' # TODO: Remove on 2026/06/02 | ||
|
|
||
| jobs: | ||
| # codecov collects code coverage data from the rust tests, python snippets and python test suite. | ||
| # This is done using cargo-llvm-cov, which is a wrapper around llvm-cov. | ||
| codecov: | ||
| name: Collect code coverage data | ||
| runs-on: ubuntu-latest | ||
| # Disable this scheduled job when running on a fork. | ||
| if: ${{ github.repository == 'RustPython/RustPython' || github.event_name != 'schedule' }} | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - uses: dtolnay/rust-toolchain@stable | ||
| - uses: taiki-e/install-action@cargo-llvm-cov | ||
|
|
||
| - uses: taiki-e/install-action@cf525cb33f51aca27cd6fa02034117ab963ff9f1 # v2.75.22 | ||
| with: | ||
| tool: cargo-llvm-cov | ||
|
|
||
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | ||
|
|
||
| - run: sudo apt-get update && sudo apt-get -y install lcov | ||
|
|
||
| - name: Run cargo-llvm-cov with Rust tests. | ||
| run: cargo llvm-cov --no-report --workspace --exclude rustpython_wasm --exclude rustpython-compiler-source --exclude rustpython-venvlauncher --verbose --no-default-features --features stdlib,importlib,stdio,encodings,ssl-rustls,jit,host_env | ||
|
|
||
| - name: Run cargo-llvm-cov with Python snippets. | ||
| run: python scripts/cargo-llvm-cov.py | ||
| continue-on-error: true | ||
|
|
||
| - name: Run cargo-llvm-cov with Python test suite. | ||
| run: cargo llvm-cov --no-report run -- -m test -u all --slowest --fail-env-changed | ||
| continue-on-error: true | ||
|
|
||
| - name: Prepare code coverage data | ||
| run: cargo llvm-cov report --lcov --output-path='codecov.lcov' | ||
|
|
||
| - name: Upload to Codecov | ||
| if: ${{ github.event_name != 'pull_request' }} | ||
| uses: codecov/codecov-action@v5 | ||
| uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 | ||
| with: | ||
| files: ./codecov.lcov | ||
|
|
||
| testdata: | ||
| name: Collect regression test data | ||
| runs-on: ubuntu-latest | ||
| # Disable this scheduled job when running on a fork. | ||
| if: ${{ github.repository == 'RustPython/RustPython' || github.event_name != 'schedule' }} | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: true | ||
|
|
||
| - uses: dtolnay/rust-toolchain@stable | ||
|
|
||
| - name: build rustpython | ||
| run: cargo build --release --verbose | ||
|
|
||
| - name: collect tests data | ||
| run: cargo run --release extra_tests/jsontests.py | ||
| env: | ||
| RUSTPYTHONPATH: ${{ github.workspace }}/Lib | ||
|
|
||
| - name: upload tests data to the website | ||
| if: ${{ github.event_name != 'pull_request' }} | ||
| env: | ||
| SSHKEY: ${{ secrets.ACTIONS_TESTS_DATA_DEPLOY_KEY }} | ||
| GITHUB_ACTOR: ${{ github.actor }} | ||
| run: | | ||
| echo "$SSHKEY" >~/github_key | ||
| chmod 600 ~/github_key | ||
| export GIT_SSH_COMMAND="ssh -i ~/github_key" | ||
|
|
||
| git clone git@github.com:RustPython/rustpython.github.io.git website | ||
| cd website | ||
| cp ../extra_tests/cpython_tests_results.json ./_data/regrtests_results.json | ||
| git add ./_data/regrtests_results.json | ||
| if git -c user.name="Github Actions" -c user.email="actions@github.com" commit -m "Update regression test results" --author="$GITHUB_ACTOR"; then | ||
| git push | ||
| fi | ||
|
|
||
| whatsleft: | ||
| name: Collect what is left data | ||
| runs-on: ubuntu-latest | ||
| # Disable this scheduled job when running on a fork. | ||
| if: ${{ github.repository == 'RustPython/RustPython' || github.event_name != 'schedule' }} | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: true | ||
|
|
||
| - uses: dtolnay/rust-toolchain@stable | ||
|
|
||
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | ||
|
|
||
| - name: build rustpython | ||
| run: cargo build --release --verbose | ||
|
|
||
| - name: Collect what is left data | ||
| run: | | ||
| chmod +x ./scripts/whats_left.py | ||
| ./scripts/whats_left.py --features "ssl,sqlite" > whats_left.temp | ||
| env: | ||
| RUSTPYTHONPATH: ${{ github.workspace }}/Lib | ||
|
|
||
| - name: Upload data to the website | ||
| if: ${{ github.event_name != 'pull_request' }} | ||
| env: | ||
| SSHKEY: ${{ secrets.ACTIONS_TESTS_DATA_DEPLOY_KEY }} | ||
| GITHUB_ACTOR: ${{ github.actor }} | ||
| run: | | ||
| echo "$SSHKEY" >~/github_key | ||
| chmod 600 ~/github_key | ||
| export GIT_SSH_COMMAND="ssh -i ~/github_key" | ||
|
|
||
| git clone git@github.com:RustPython/rustpython.github.io.git website | ||
| cd website | ||
| [ -f ./_data/whats_left.temp ] && cp ./_data/whats_left.temp ./_data/whats_left_lastrun.temp | ||
| cp ../whats_left.temp ./_data/whats_left.temp | ||
| rm ./_data/whats_left/modules.csv | ||
| echo -e "module" > ./_data/whats_left/modules.csv | ||
| cat ./_data/whats_left.temp | grep "(entire module)" | cut -d ' ' -f 1 | sort >> ./_data/whats_left/modules.csv | ||
| awk -f - ./_data/whats_left.temp > ./_data/whats_left/builtin_items.csv <<'EOF' | ||
| BEGIN { | ||
| OFS="," | ||
| print "builtin,name,is_inherited" | ||
| } | ||
| /^# builtin items/ { in_section=1; next } | ||
| /^$/ { if (in_section) exit } | ||
| in_section { | ||
| split($1, a, ".") | ||
| rest = "" | ||
| idx = index($0, " ") | ||
| if (idx > 0) { | ||
| rest = substr($0, idx+1) | ||
| } | ||
| print a[1], $1, rest | ||
| } | ||
| EOF | ||
| git add -A | ||
| if git -c user.name="Github Actions" -c user.email="actions@github.com" commit -m "Update what is left results" --author="$GITHUB_ACTOR"; then | ||
| git push | ||
| fi | ||
|
|
||
| benchmark: | ||
| name: Collect benchmark data | ||
| runs-on: ubuntu-latest | ||
| # Disable this scheduled job when running on a fork. | ||
| if: ${{ github.repository == 'RustPython/RustPython' || github.event_name != 'schedule' }} | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: true | ||
|
|
||
| - uses: dtolnay/rust-toolchain@stable | ||
|
|
||
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | ||
|
|
||
| - run: cargo install cargo-criterion | ||
|
|
||
| - name: build benchmarks | ||
| run: cargo build --release --benches | ||
|
|
||
| - name: collect execution benchmark data | ||
| run: cargo criterion --bench execution | ||
|
|
||
| - name: collect microbenchmarks data | ||
| run: cargo criterion --bench microbenchmarks | ||
|
|
||
| - name: restructure generated files | ||
| run: | | ||
| cd ./target/criterion/reports | ||
| find . -type d -name cpython -print0 | xargs -0 rm -rf | ||
| find . -type d -name rustpython -print0 | xargs -0 rm -rf | ||
| find . -mindepth 2 -maxdepth 2 -name violin.svg -print0 | xargs -0 rm -rf | ||
| find . -type f -not -name violin.svg -print0 | xargs -0 rm -rf | ||
| find . -type f -name violin.svg -exec sh -c 'for file; do mv "$file" "$(echo "$file" | sed -E "s_\./([^/]+)/([^/]+)/violin\.svg_./\1/\2.svg_")"; done' _ {} + | ||
| find . -mindepth 2 -maxdepth 2 -type d -print0 | xargs -0 rm -rf | ||
| cd .. | ||
| mv reports/* . | ||
| rmdir reports | ||
|
|
||
| - name: upload benchmark data to the website | ||
| if: ${{ github.event_name != 'pull_request' }} | ||
| env: | ||
| SSHKEY: ${{ secrets.ACTIONS_TESTS_DATA_DEPLOY_KEY }} | ||
| run: | | ||
| echo "$SSHKEY" >~/github_key | ||
| chmod 600 ~/github_key | ||
| export GIT_SSH_COMMAND="ssh -i ~/github_key" | ||
|
|
||
| git clone git@github.com:RustPython/rustpython.github.io.git website | ||
| cd website | ||
| rm -rf ./assets/criterion | ||
| cp -r ../target/criterion ./assets/criterion | ||
| printf '{\n "generated_at": "%s",\n "rustpython_commit": "%s",\n "rustpython_ref": "%s"\n}\n' \ | ||
| "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \ | ||
| "${{ github.sha }}" \ | ||
| "${{ github.ref_name }}" > ./_data/criterion-metadata.json | ||
| git add ./assets/criterion ./_data/criterion-metadata.json | ||
| if git -c user.name="Github Actions" -c user.email="actions@github.com" commit -m "Update benchmark results"; then | ||
| git push | ||
| fi | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested by #7567 (comment)