Skip to content

Ci builds fixes #135

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

Merged
merged 32 commits into from
Dec 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
02801e6
Disable old workflows
AlexNDRmac Nov 28, 2021
2f8da1a
Add initial Linux build
AlexNDRmac Nov 28, 2021
822e0ef
Fix matrix syntax
AlexNDRmac Nov 28, 2021
4e5c444
Fix matrix includes
AlexNDRmac Nov 28, 2021
6d76a93
Add VERSION file to PECL package
AlexNDRmac Nov 28, 2021
3b8a640
Use proper gitattributes for phpt files
AlexNDRmac Nov 28, 2021
8155c01
Add macOS to matrix
AlexNDRmac Nov 29, 2021
3aa7f3e
Add macOS action, fix test cmd
AlexNDRmac Nov 29, 2021
9d6af41
Pass extension to tests
AlexNDRmac Nov 29, 2021
90d86f2
Add windows extension
AlexNDRmac Nov 29, 2021
c86275b
Enable parser extension
AlexNDRmac Nov 29, 2021
b4936af
Fix extension copying, add php manager
AlexNDRmac Nov 29, 2021
3101b9f
Add lemon parser for win, fix ini file path
AlexNDRmac Nov 29, 2021
1875026
Fix env vars, use copy files for linux ini file
AlexNDRmac Nov 29, 2021
89dd6d0
Fix shell syntax
AlexNDRmac Nov 29, 2021
97232ba
Set env var for php tests
AlexNDRmac Dec 2, 2021
0773936
Fix artifacts upload step
AlexNDRmac Dec 3, 2021
f63c410
Use unix like path for bash windows
AlexNDRmac Dec 3, 2021
d79b684
Try to upgrade to win2019
AlexNDRmac Dec 4, 2021
deaa915
Try mixed matrix
AlexNDRmac Dec 4, 2021
1b18d84
Add full matrix opts to mixed matrix
AlexNDRmac Dec 4, 2021
d84905c
Enable full matrix
AlexNDRmac Dec 4, 2021
0f2a378
Fix msvc compiler version for php 7.4
AlexNDRmac Dec 4, 2021
618e3ef
Fix msvc compiler prefix for php 7.4
AlexNDRmac Dec 4, 2021
867a1bc
Try to set compatible toolser for php 7.4
AlexNDRmac Dec 4, 2021
a30962e
Fix condition for msvc toolset
AlexNDRmac Dec 4, 2021
133504b
Use conditional php ver from inputs var
AlexNDRmac Dec 4, 2021
29069f3
Add pecl package
AlexNDRmac Dec 5, 2021
44780b5
Remove old files, add fail scenario
AlexNDRmac Dec 5, 2021
1442404
Enable code coverage
AlexNDRmac Dec 5, 2021
2edd736
Fix ccov tag, update apt list
AlexNDRmac Dec 5, 2021
0938b1f
Fix artifact names
AlexNDRmac Dec 5, 2021
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
10 changes: 0 additions & 10 deletions .ci/release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,4 @@ startline=$(cat "$1" | grep -nE '^### ' | head -n 1 | cut -d ":" -f 1)
finishline=$(($(cat "$1" | grep -nE '^## \[[0-9]+' | head -n 2 | tail -n 1 | cut -d ":" -f 1) - 1))
changelog=$(sed -n "${startline},${finishline}p" "$1");


: "${GITHUB_ACTIONS:=0}"

if [ "$GITHUB_ACTIONS" = "true" ]
then
changelog="${changelog//'%'/'%25'}"
changelog="${changelog//$'\n'/'%0A'}"
changelog="${changelog//$'\r'/'%0D'}"
fi

echo "${changelog}"
Loading