Skip to content
Open

commit #2061

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4a68886
Update check-directional-formatting.bash
BigBearHub-commits Sep 24, 2025
d0dd744
Update check-unsafe-assertions.sh
BigBearHub-commits Sep 24, 2025
8c298b6
Update check-whitespace.sh
BigBearHub-commits Sep 24, 2025
7182c43
Update install-dependencies.sh
BigBearHub-commits Sep 24, 2025
2782ee0
Update install-sdk.ps1
BigBearHub-commits Sep 24, 2025
068b702
Update lib.sh
BigBearHub-commits Sep 24, 2025
de08827
Update make-test-artifacts.sh
BigBearHub-commits Sep 24, 2025
9d309a6
Update mount-fileshare.sh
BigBearHub-commits Sep 24, 2025
2974a78
Update make-test-artifacts.sh
BigBearHub-commits Sep 24, 2025
8682329
Update mount-fileshare.sh
BigBearHub-commits Sep 24, 2025
dc292b7
Update run-build-and-minimal-fuzzers.sh
BigBearHub-commits Sep 24, 2025
13bf8ef
Update run-build-and-tests.sh
BigBearHub-commits Sep 24, 2025
b708497
Update run-static-analysis.sh
BigBearHub-commits Sep 24, 2025
c4dc79a
Update run-build-and-tests.sh
BigBearHub-commits Sep 24, 2025
f1a88e3
Update run-static-analysis.sh
BigBearHub-commits Sep 24, 2025
cd46532
Update run-style-check.sh
BigBearHub-commits Sep 24, 2025
2fa0691
Update run-test-slice.sh
BigBearHub-commits Sep 24, 2025
428e5d8
Update test-documentation.sh
BigBearHub-commits Sep 24, 2025
2af77a1
Update README
BigBearHub-commits Sep 24, 2025
cb59682
Update sha1.c
BigBearHub-commits Sep 24, 2025
f9fc452
Update sha1.h
BigBearHub-commits Sep 24, 2025
1f55562
Update install-sdk.ps1
BigBearHub-commits Sep 24, 2025
6d08435
Update .cirrus.yml
BigBearHub-commits Oct 1, 2025
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
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
CIRRUS_CLONE_DEPTH: 1
CIRRUS_CLONE_DEPTH: 1

freebsd_task:
env:
Expand Down
2 changes: 1 addition & 1 deletion block-sha1/sha1.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* SHA1 routine optimized to do word accesses rather than byte accesses,
* and to avoid unnecessary copies into the context array.
*
Expand Down
2 changes: 1 addition & 1 deletion block-sha1/sha1.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* SHA1 routine optimized to do word accesses rather than byte accesses,
* and to avoid unnecessary copies into the context array.
* and to avoid unnecessary copies into the context array.
*
* This was initially based on the Mozilla SHA1 implementation, although
* none of the original Mozilla code remains.
Expand Down
2 changes: 1 addition & 1 deletion ci/check-directional-formatting.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env bash

# This script verifies that the non-binary files tracked in the Git index do
# not contain any Unicode directional formatting: such formatting could be used
Expand Down
2 changes: 1 addition & 1 deletion ci/check-unsafe-assertions.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh

make CHECK_ASSERTION_SIDE_EFFECTS=1 >compiler_output 2>compiler_error
if test $? != 0
Expand Down
4 changes: 2 additions & 2 deletions ci/check-whitespace.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#!/usr/bin/env bash
#
# Check that commits after a specified point do not contain new or modified
# Check that commits after a specified point do not contain new or modified
# lines with whitespace errors. An optional formatted summary can be generated
# by providing an output file path and url as additional arguments.
#
Expand Down
2 changes: 1 addition & 1 deletion ci/config/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
You can configure some aspects of the GitHub Actions-based CI on a
You can configure some aspects of the GitHub Actions-based CI on a
per-repository basis by setting "variables" and "secrets" from with the
GitHub web interface. These can be found at:

Expand Down
2 changes: 1 addition & 1 deletion ci/install-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
#
# Install dependencies required to build and test Git on Linux and macOS
# Install dependencies required to build and test Git on Linux and macOS
#

. ${0%/*}/lib.sh
Expand Down
4 changes: 2 additions & 2 deletions ci/install-sdk.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param(
[string]$directory='git-sdk',
param(
[string]$directory='git-sdk',
[string]$url='https://github.com/git-for-windows/git-sdk-64/releases/download/ci-artifacts/git-sdk-x86_64-minimal.zip'
)

Expand Down
4 changes: 2 additions & 2 deletions ci/lib.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Library of functions shared by all CI scripts
# Library of functions shared by all CI scripts

if test true = "$GITHUB_ACTIONS"
then
then
begin_group () {
need_to_end_group=t
echo "::group::$1" >&2
Expand Down
4 changes: 2 additions & 2 deletions ci/make-test-artifacts.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
#
# Build Git and store artifacts for testing
#
# Build Git and store artifacts for testing
#

mkdir -p "$1" # in case ci/lib.sh decides to quit early
Expand Down
4 changes: 2 additions & 2 deletions ci/mount-fileshare.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

die () {
echo "$*" >&2
die () {
echo "$*" >&2
exit 1
}

Expand Down
4 changes: 2 additions & 2 deletions ci/run-build-and-minimal-fuzzers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
#!/bin/sh
#
# Build and test Git's fuzzers
# Build and test Git's fuzzers
#

. ${0%/*}/lib.sh
Expand Down
4 changes: 2 additions & 2 deletions ci/run-build-and-tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
#
#
# Build and test Git
#
#

. ${0%/*}/lib.sh

Expand Down
4 changes: 2 additions & 2 deletions ci/run-static-analysis.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
#
#
# Perform various static code analysis checks
#

. ${0%/*}/lib.sh

make coccicheck
Expand Down
2 changes: 1 addition & 1 deletion ci/run-style-check.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
#
#
# Perform style check
#

Expand Down
2 changes: 1 addition & 1 deletion ci/run-test-slice.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Test Git in parallel
#

. ${0%/*}/lib.sh

group "Run tests" make --quiet -C t T="$(cd t &&
Expand Down
2 changes: 1 addition & 1 deletion ci/test-documentation.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
#
#
# Perform sanity checks on documentation and build it.
#

Expand Down