[openssh-commits] [openssh] 02/03: Rename debugging variable RUN_ONLY_TEST.
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri May 23 17:18:06 AEST 2025
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit d8b5bd36078e5b6d78da4633f0cc9b90ffda8b50
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Fri May 23 16:26:20 2025 +1000
Rename debugging variable RUN_ONLY_TEST.
to RUN_ONLY_TARGET_CONFIG to make it more obvious what it matches.
---
.github/workflows/c-cpp.yml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index 887d54af2..43380df42 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -111,12 +111,12 @@ jobs:
- { target: macos-15, config: pam }
runs-on: ${{ matrix.target }}
steps:
- - name: check RUN_ONLY_TEST
- # For testing, you can set the repo variable RUN_ONLY_TEST in your repo
- # (Repo -> Settings -> Security -> Actions -> Variables) to run only
- # that test config.
- if: vars.RUN_ONLY_TEST != ''
- run: sh -c 'if [ "${{ vars.RUN_ONLY_TEST }}" != "${{ matrix.target }} ${{matrix.config }}" ]; then exit 1; else exit 0; fi'
+ - name: check RUN_ONLY_TARGET_CONFIG
+ # For testing, you can set the repo variable RUN_ONLY_TARGET_CONFIG in
+ # your repo (Repo -> Settings -> Security -> Actions -> Variables) to
+ # run only that test config, eg "ubuntu-latest default".
+ if: vars.RUN_ONLY_TARGET_CONFIG != ''
+ run: sh -c 'if [ "${{ vars.RUN_ONLY_TARGET_CONFIG }}" != "${{ matrix.target }} ${{matrix.config }}" ]; then exit 1; else exit 0; fi'
- name: set cygwin git params
if: ${{ startsWith(matrix.target, 'windows') }}
run: git config --global core.autocrlf input
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list