Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Let tests be run at Github CI for this branch |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | bug-9ba9729ef1 |
Files: | files | file ages | folders |
SHA3-256: |
dd5d0ddc26e386c2fc53a4665f97f144 |
User & Date: | erikleunissen 2025-08-16 20:05:31.236 |
Context
2025-08-18
| ||
22:10 | Remove Github CI scheduling intructions Closed-Leaf check-in: f12f630b user: erikleunissen tags: bug-9ba9729ef1 | |
2025-08-16
| ||
20:26 | Simplify result for test winfo-5.7.2 check-in: 74ac1fa1 user: erikleunissen tags: bug-9ba9729ef1 | |
20:05 | Let tests be run at Github CI for this branch check-in: dd5d0ddc user: erikleunissen tags: bug-9ba9729ef1 | |
10:05 | winfo.test: add tests for "winfo interps" with multiple interpreters (in the same process and in different processes) check-in: c8bf1bce user: erikleunissen tags: bug-9ba9729ef1 | |
Changes
Changes to .github/workflows/linux-build.yml.
1 2 3 4 5 6 7 8 9 10 11 12 13 | name: Linux on: push: branches: - "main" - "core-9-0-branch" tags: - "core-**" permissions: contents: read defaults: run: shell: bash | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | name: Linux on: push: branches: - "main" - "core-9-0-branch" - "bug-9ba9729ef1" tags: - "core-**" permissions: contents: read defaults: run: shell: bash |
︙ | ︙ |
Changes to .github/workflows/mac-build.yml.
1 2 3 4 5 6 7 8 9 10 11 12 13 | name: macOS on: push: branches: - "main" - "core-9-0-branch" tags: - "core-**" permissions: contents: read env: ERROR_ON_FAILURES: 1 jobs: | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | name: macOS on: push: branches: - "main" - "core-9-0-branch" - "bug-9ba9729ef1" tags: - "core-**" permissions: contents: read env: ERROR_ON_FAILURES: 1 jobs: |
︙ | ︙ |
Changes to .github/workflows/win-build.yml.
1 2 3 4 5 6 7 8 9 10 11 12 13 | name: Windows on: push: branches: - "main" - "core-9-0-branch" tags: - "core-**" permissions: contents: read env: ERROR_ON_FAILURES: 1 jobs: | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | name: Windows on: push: branches: - "main" - "core-9-0-branch" - "bug-9ba9729ef1" tags: - "core-**" permissions: contents: read env: ERROR_ON_FAILURES: 1 jobs: |
︙ | ︙ |