-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
277 changed files
with
16,828 additions
and
1,187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tests/resources/spellcheck/*.txt diff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "parse-distrib" | ||
description: "parse distrib name." | ||
inputs: | ||
distrib: | ||
description: "The distribution name" | ||
required: true | ||
outputs: | ||
package_distrib_separator: | ||
description: "Separator between package version and distrib number" | ||
value: ${{ steps.parse-distrib.outputs.package_distrib_separator }} | ||
package_distrib_name: | ||
description: "Distribution suffix in package name" | ||
value: ${{ steps.parse-distrib.outputs.package_distrib_name }} | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Parse distrib | ||
id: parse-distrib | ||
run: | | ||
if [[ "${{ inputs.distrib }}" == "centos7" || "${{ inputs.distrib }}" == "el7" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="." | ||
PACKAGE_DISTRIB_NAME="el7" | ||
elif [[ "${{ inputs.distrib }}" == "alma8" || "${{ inputs.distrib }}" == "el8" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="." | ||
PACKAGE_DISTRIB_NAME="el8" | ||
elif [[ "${{ inputs.distrib }}" == "alma9" || "${{ inputs.distrib }}" == "el9" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="." | ||
PACKAGE_DISTRIB_NAME="el9" | ||
elif [[ "${{ inputs.distrib }}" == "bullseye" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="+" | ||
PACKAGE_DISTRIB_NAME="deb11u1" | ||
elif [[ "${{ inputs.distrib }}" == "bookworm" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="+" | ||
PACKAGE_DISTRIB_NAME="deb12u1" | ||
elif [[ "${{ inputs.distrib }}" == "jammy" ]]; then | ||
PACKAGE_DISTRIB_SEPARATOR="-" | ||
PACKAGE_DISTRIB_NAME="0ubuntu.22.04" | ||
else | ||
echo "::error::Distrib ${{ inputs.distrib }} cannot be parsed" | ||
exit 1 | ||
fi | ||
echo "package_distrib_separator=$PACKAGE_DISTRIB_SEPARATOR" >> $GITHUB_OUTPUT | ||
echo "package_distrib_name=$PACKAGE_DISTRIB_NAME" >> $GITHUB_OUTPUT | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
.github/docker/packaging/Dockerfile.packaging-plugins-java-alma8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
ARG REGISTRY_URL | ||
|
||
FROM ${REGISTRY_URL}/almalinux:8 | ||
|
||
RUN bash -e <<EOF | ||
|
||
dnf install -y \ | ||
git \ | ||
wget \ | ||
zstd \ | ||
https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.rpm | ||
|
||
cd /usr/local/src | ||
wget https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz | ||
tar zxf apache-maven-3.8.8-bin.tar.gz | ||
ln -s /usr/local/src/apache-maven-3.8.8/bin/mvn /usr/bin/mvn | ||
rm -f apache-maven-3.8.8-bin.tar.gz | ||
|
||
echo '[goreleaser] | ||
name=GoReleaser | ||
baseurl=https://repo.goreleaser.com/yum/ | ||
enabled=1 | ||
gpgcheck=0' | tee /etc/yum.repos.d/goreleaser.repo | ||
dnf install -y nfpm | ||
dnf clean all | ||
|
||
EOF | ||
|
||
WORKDIR /src |
29 changes: 29 additions & 0 deletions
29
.github/docker/packaging/Dockerfile.packaging-plugins-java-alma9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
ARG REGISTRY_URL | ||
|
||
FROM ${REGISTRY_URL}/almalinux:9 | ||
|
||
RUN bash -e <<EOF | ||
|
||
dnf install -y \ | ||
git \ | ||
wget \ | ||
zstd \ | ||
https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.rpm | ||
|
||
cd /usr/local/src | ||
wget https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz | ||
tar zxf apache-maven-3.8.8-bin.tar.gz | ||
ln -s /usr/local/src/apache-maven-3.8.8/bin/mvn /usr/bin/mvn | ||
rm -f apache-maven-3.8.8-bin.tar.gz | ||
|
||
echo '[goreleaser] | ||
name=GoReleaser | ||
baseurl=https://repo.goreleaser.com/yum/ | ||
enabled=1 | ||
gpgcheck=0' | tee /etc/yum.repos.d/goreleaser.repo | ||
dnf install -y nfpm | ||
dnf clean all | ||
|
||
EOF | ||
|
||
WORKDIR /src |
Oops, something went wrong.