CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:gcc cc_package:gcc-8 jobname:linux-gcc pool:ubuntu-20.04]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:gcc cc_package:gcc-8 jobname:linux-TEST-vars pool:ubuntu-20.04]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:osx-reftable pool:macos-13]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:osx-clang pool:macos-13]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-sha256 pool:ubuntu-latest]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-reftable pool:ubuntu-latest]) (push) Has been skipped
CI / win+VS test (6) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-asan-ubsan pool:ubuntu-latest]) (push) Has been skipped
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:gcc jobname:linux-gcc-default pool:ubuntu-latest]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:gcc cc_package:gcc-8 jobname:linux-gcc pool:ubuntu-20.04]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:gcc cc_package:gcc-8 jobname:linux-TEST-vars pool:ubuntu-20.04]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:osx-reftable pool:macos-13]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:osx-clang pool:macos-13]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-sha256 pool:ubuntu-latest]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-reftable pool:ubuntu-latest]) (push) Has been cancelled
CI / ${{matrix.vector.jobname}} (${{matrix.vector.pool}}) (map[cc:clang jobname:linux-asan-ubsan pool:ubuntu-latest]) (push) Has been cancelled
Also update the DEF_VER in GIT-VERSION-GEN, which I forgot to do
earlier (it should have been done when we started the new cycle).
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Test and shell scripts clean-up.
* ps/ban-a-or-o-operator-with-test:
Makefile: stop using `test -o` when unlinking duplicate executables
contrib/subtree: convert subtree type check to use case statement
contrib/subtree: stop using `-o` to test for number of args
global: convert trivial usages of `test <expr> -a/-o <expr>`
Our coding guidelines say to not use `test` with `-a` and `-o` because
it can easily lead to bugs. Convert trivial cases where we still use
these to instead instead concatenate multiple invocations of `test` via
`&&` and `||`, respectively.
While not all of the converted instances can cause ambiguity, it is
worth getting rid of all of them regardless:
- It becomes easier to reason about the code as we do not have to
argue why one use of `-a`/`-o` is okay while another one isn't.
- We don't encourage people to use these expressions.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
The version numbers do not mean much, but we may want to call the
first one in 2023 version 3.1 or something, but let's just increment
the second digit from the previous one for this cycle.
Signed-off-by: Junio C Hamano <gitster@pobox.com>