forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from 0xPolygon/djpolygon/deb_packager
Adding initial for deb packaging for amd64
- Loading branch information
Showing
5 changed files
with
127 additions
and
0 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,87 @@ | ||
name: deb_packager | ||
# test | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- '**' | ||
tags: | ||
- 'v*.*.*' | ||
- 'v*.*.*-*' | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
id-token: write | ||
contents: write | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go | ||
uses: actions/setup-go@master | ||
with: | ||
go-version: 1.22.x | ||
# Variables | ||
- name: Adding TAG to ENV | ||
run: echo "GIT_TAG=`echo $(git describe --tags --abbrev=0)`" >> $GITHUB_ENV | ||
- name: adding version | ||
run: | | ||
NUMERIC_VERSION=$( echo ${{ env.GIT_TAG }} | sed 's/[^0-9.]//g' ) | ||
echo "VERSION=$NUMERIC_VERSION" >> $GITHUB_ENV | ||
- name: make clean for good measure | ||
run: make clean | ||
|
||
- name: build the binary | ||
run: make build | ||
|
||
- name: making directory structure | ||
run: mkdir -p packaging/deb/cdk-validium-node/usr/bin/ | ||
- name: copying necessary binary for amd64 | ||
run: cp -rp dist/zkevm-node packaging/deb/cdk-validium-node/usr/bin/cdk-validium-node | ||
- name: create directory for service file | ||
run: mkdir -p packaging/deb/cdk-validium-node/lib/systemd/system | ||
- name: copy the service file | ||
run: cp -rp packaging/systemd/cdk-validium-node.service packaging/deb/cdk-validium-node/lib/systemd/system/ | ||
|
||
|
||
# Control file creation | ||
- name: create control file | ||
run: | | ||
echo "Package: cdk-validium-node" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Version: ${{ env.VERSION }}" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Section: base" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Priority: optional" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Architecture: amd64" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Maintainer: [email protected]" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
echo "Description: cdk-validium-node binary package" >> packaging/deb/cdk-validium-node/DEBIAN/control | ||
- name: Creating package for binary for cdk-validium-node ${{ env.ARCH }} | ||
run: cp -rp packaging/deb/cdk-validium-node packaging/deb/cdk-validium-node-${{ env.GIT_TAG }}-${{ env.ARCH }} | ||
env: | ||
ARCH: amd64 | ||
|
||
- name: Running package build | ||
run: dpkg-deb --build --root-owner-group packaging/deb/cdk-validium-node-${{ env.GIT_TAG }}-${{ env.ARCH }} | ||
env: | ||
ARCH: amd64 | ||
|
||
- name: create checksum for the amd64 package | ||
run: cd packaging/deb/ && sha256sum cdk-validium-node-${{ env.GIT_TAG }}-${{ env.ARCH }}.deb > cdk-validium-node-${{ env.GIT_TAG }}-${{ env.ARCH }}.deb.checksum | ||
env: | ||
ARCH: amd64 | ||
|
||
|
||
- name: Release cdk-validium-node Packages | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.GIT_TAG }} | ||
prerelease: true | ||
files: | | ||
packaging/deb/cdk-validium-node**.deb | ||
packaging/deb/cdk-validium-node**.deb.checksum |
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,12 @@ | ||
#!/bin/bash | ||
# This is a postinstallation script so the service can be configured and started when requested | ||
# | ||
sudo adduser --disabled-password --disabled-login --shell /usr/sbin/nologin --quiet --system --no-create-home --home /nonexistent cdk-validium-node | ||
if [ -d "/opt/cdk-validium-node" ] | ||
then | ||
echo "Directory /opt/cdk-validium-node exists." | ||
else | ||
sudo mkdir -p /opt/cdk-validium-node | ||
sudo chown -R cdk-validium-node /opt/cdk-validium-node | ||
fi | ||
sudo systemctl daemon-reload |
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,8 @@ | ||
#!/bin/bash | ||
# | ||
############### | ||
# Remove cdk-validium-node installs | ||
############## | ||
sudo rm -rf /lib/systemd/system/cdk-validium-node.service | ||
sudo deluser cdk-validium-node | ||
sudo systemctl daemon-reload |
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,16 @@ | ||
[Unit] | ||
Description=cdk-validium-node | ||
StartLimitIntervalSec=500 | ||
StartLimitBurst=5 | ||
|
||
[Service] | ||
Restart=on-failure | ||
RestartSec=5s | ||
ExecStart=/usr/bin/cdk-validium-node | ||
Type=simple | ||
KillSignal=SIGINT | ||
User=cdk-validium-node | ||
TimeoutStopSec=120 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |