Skip to content
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

feat(packaging): package for Debian 12 #1057

Merged
merged 37 commits into from
Jan 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a324fd1
initial commit
mushroomempires Jan 9, 2024
7d1e98e
pbuilder fix + conan fix
mushroomempires Jan 9, 2024
9f58867
to revert
mushroomempires Jan 9, 2024
a757f91
Revert "to revert"
mushroomempires Jan 9, 2024
85d580f
add quotes
mushroomempires Jan 9, 2024
44cb2f1
moved around pbuilder install
mushroomempires Jan 9, 2024
9f7949c
add bookworm to matrix
mushroomempires Jan 9, 2024
ac3a83c
trigger ci
mushroomempires Jan 9, 2024
a3a85c8
remove
mushroomempires Jan 9, 2024
c1ee6f6
update package according to package extension and stability
mushroomempires Jan 9, 2024
1396781
forgot to add stability variable in package workflows
mushroomempires Jan 9, 2024
976f104
added canary as option for generating packages with deb distrib
mushroomempires Jan 9, 2024
4d81364
forgot brackets
mushroomempires Jan 10, 2024
d651d74
add bookworm condition for the rest of the steps
mushroomempires Jan 10, 2024
d964e5a
fix
mushroomempires Jan 10, 2024
ab26b2d
add check to prevent 22/23 centreon versions from delivering bookworm…
mushroomempires Jan 10, 2024
c4e2526
ensure that testing packages are created
mushroomempires Jan 11, 2024
90b9e5e
added double brackets for check
mushroomempires Jan 11, 2024
24be4c4
added environment files
mushroomempires Jan 11, 2024
c7e237a
uwu
mushroomempires Jan 11, 2024
9353708
uwu
mushroomempires Jan 11, 2024
b75e76e
reverted changes to push testing packages
mushroomempires Jan 11, 2024
9ae4237
fixes and changes brought by reviews
mushroomempires Jan 17, 2024
bb1c22c
fix
mushroomempires Jan 17, 2024
6a1125a
fix
mushroomempires Jan 17, 2024
d897ca5
fix
mushroomempires Jan 17, 2024
ac7e914
fix
mushroomempires Jan 17, 2024
79fe111
attempt to remove pbuilder
mushroomempires Jan 18, 2024
0f0389a
Merge branch 'develop' of https://github.com/centreon/centreon-collec…
mushroomempires Jan 18, 2024
6846e83
Update .github/workflows/centreon-collect.yml
mushroomempires Jan 18, 2024
c2f12a7
revert
mushroomempires Jan 18, 2024
ceb7cd1
Merge branch 'MON-34065-package-debian-12' of https://github.com/cent…
mushroomempires Jan 18, 2024
b6ce187
removed debian tooling
mushroomempires Jan 18, 2024
c4c0dc7
added git for conan install command on dockerfile
mushroomempires Jan 19, 2024
b2c9d36
removed packaging dependencies on debian dockerfile that are redundan…
mushroomempires Jan 19, 2024
3e31143
removed packaging dependencies on debian dockerfile that are redundan…
mushroomempires Jan 19, 2024
44da269
Merge branch 'develop' of https://github.com/centreon/centreon-collec…
mushroomempires Jan 26, 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
added double brackets for check
  • Loading branch information
mushroomempires committed Jan 11, 2024
commit 90b9e5eab08d427045d531d1e86c25441e52da46
2 changes: 1 addition & 1 deletion .github/actions/delivery/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ runs:
name: Publish DEBs
run: |
if [ ${{ inputs.distrib == 'bookworm' }} ]; then
if [ ${{ inputs.version }} =~ 22.* ] || [ ${{ inputs.version }} =~ 23.* ]; then
if [[ ${{ inputs.version }} =~ 22.* ]] || [[ ${{ inputs.version }} =~ 23.* ]]; then
echo "${{ inputs.distrib }} and ${{ inputs.version }} are not compatible. Nothing will be published"
exit 0
fi
Expand Down