Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 42 additions & 18 deletions .github/workflows/linux_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ permissions:
jobs:
tcl86-nolibtclenvmodules:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh8.6
Expand Down Expand Up @@ -67,10 +69,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand All @@ -82,6 +86,8 @@ jobs:

tcl85-nolibtclenvmodules:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh8.5
Expand Down Expand Up @@ -155,10 +161,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand All @@ -170,6 +178,8 @@ jobs:

tcl85-2:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh8.5
Expand Down Expand Up @@ -239,10 +249,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand All @@ -254,6 +266,8 @@ jobs:

tcl86:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh8.6
Expand Down Expand Up @@ -308,10 +322,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand All @@ -323,6 +339,8 @@ jobs:

tcl85:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh8.5
Expand Down Expand Up @@ -379,10 +397,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand Down Expand Up @@ -475,6 +495,8 @@ jobs:

tcl90:
runs-on: ubuntu-22.04
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--with-tclsh=tclsh9.0
Expand Down Expand Up @@ -525,10 +547,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/macos_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ permissions:
jobs:
macos:
runs-on: macos-15
permissions:
id-token: write
env:
CONFIGURE_OPTS: |
--prefix=/tmp/modules
Expand Down Expand Up @@ -62,10 +64,12 @@ jobs:
- name: Uninstall Modules
run: |
make uninstall
# no token needed: public repo uses Codecov's tokenless upload via
# GitHub OIDC, which also works for pull requests coming from forks
# (base repo secrets are never exposed to fork-triggered PR runs)
# no token needed: id-token permission above lets Codecov verify
# this public repo via GitHub OIDC, which also works for pull
# requests from forks (base repo secrets are never exposed there)
- uses: codecov/codecov-action@v7
with:
use_oidc: true
- uses: actions/upload-artifact@v7
if: failure()
with:
Expand Down
Loading