Skip to content

Styleci #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 38 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f84d046
add support for Zend Max Exeuction Timers on FreeBSD (#13393)
dunglas Feb 16, 2024
2065829
[ci skip] NEWS
arnaud-lb Feb 16, 2024
51591ab
[ci skip] Adding myself as reviewer
arnaud-lb Feb 16, 2024
9a034c9
[ci skip] Adding myself as reviewer
arnaud-lb Feb 16, 2024
babe818
[ci skip] Merge branch 'PHP-8.3'
arnaud-lb Feb 16, 2024
2592398
Refactor PHP_SOCKADDR_CHECKS (#13406)
petk Feb 16, 2024
b5c3cbf
Check sockaddr_storage.ss_family with AC_CHECK_MEMBERS (#13407)
petk Feb 16, 2024
eaaffae
zend_call_stack sort of GH-13358 follow-up. (#13368)
devnexen Feb 16, 2024
e7b1f2a
Change long2ip return type (#13395)
jorgsowa Feb 16, 2024
492b9e0
Add entry on return type of long2ip to NEWS (#13408)
jorgsowa Feb 16, 2024
0941507
ext/ldap: few new unit tests (tls13 protocol). (#13409)
devnexen Feb 16, 2024
e0f6fe2
code formatting ci test
divinity76 Feb 17, 2024
31af39a
run CODE_FORMATTING_CHECK earlier
divinity76 Feb 17, 2024
08489ed
temporarily disable the others
divinity76 Feb 17, 2024
d13ed77
netcat
divinity76 Feb 17, 2024
58131f1
oops
divinity76 Feb 17, 2024
bd6f7c9
test
divinity76 Feb 17, 2024
9d57114
test
divinity76 Feb 17, 2024
913529c
test
divinity76 Feb 17, 2024
f9d5b91
test
divinity76 Feb 17, 2024
9b68cdf
test
divinity76 Feb 17, 2024
0bb20e8
test
divinity76 Feb 17, 2024
4c39f74
test
divinity76 Feb 17, 2024
9fdb233
test
divinity76 Feb 17, 2024
c669b52
test
divinity76 Feb 17, 2024
d603081
test
divinity76 Feb 17, 2024
6e85ec5
test
divinity76 Feb 17, 2024
76015e9
test
divinity76 Feb 17, 2024
7e6fa98
test
divinity76 Feb 17, 2024
a5ef74a
test
divinity76 Feb 17, 2024
5a77f1d
test
divinity76 Feb 17, 2024
f7f15b0
test
divinity76 Feb 17, 2024
ea98954
test
divinity76 Feb 17, 2024
930cd10
test
divinity76 Feb 17, 2024
df5d079
it works :D re-enable CIs
divinity76 Feb 17, 2024
84b6e25
Add style CI
Ayesh Feb 17, 2024
c47e1e8
t
Ayesh Feb 17, 2024
bcac384
WIP
Ayesh Feb 17, 2024
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
Prev Previous commit
Next Next commit
test
  • Loading branch information
divinity76 committed Feb 17, 2024
commit c669b522c611e25eca24478e5b6d4e2fa05ac493
20 changes: 0 additions & 20 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,41 +64,21 @@ jobs:
run: |
set -x
echo "Checking code formatting"
echo "Generating diff against master"
git fetch origin master
git diff origin/master > ../master.diff
cat ../master.diff | head
echo 1 check if scripts/dev/format_pull_request.php exists
if [ -f scripts/dev/format_pull_request.php ]; then
echo 1 cp scripts/dev/format_pull_request.php ..
cp scripts/dev/format_pull_request.php ..
else
echo "1 scripts/dev/format_pull_request.php does not exist"
fi
echo "checkout master"
git checkout master
echo 2 check if scripts/dev/format_pull_request.php exists
if [ -f scripts/dev/format_pull_request.php ]; then
echo 2 cp scripts/dev/format_pull_request.php ..
cp scripts/dev/format_pull_request.php ..
else
echo "2 scripts/dev/format_pull_request.php does not exist"
fi
echo "sanity check"
if [ ! -f ../format_pull_request.php ]; then
echo "error: format_pull_request.php does not exist" 1>&2
exit 1
fi
echo find | head
find | head
echo pwd
pwd
echo git diff | head
git diff | head
echo "run ../format_pull_request.php"
php ../format_pull_request.php ../master.diff > ../formatted.diff
cat ../formatted.diff
echo "check if formatted.diff is empty"
if [ -s ../formatted.diff ]; then
echo "code formatting check failed :("
patch_url=$(cat ../formatted.diff | nc termbin.com 9999)
Expand Down