From 043b039dcca3c957263a96ffab9dabfc46350443 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Wed, 1 Oct 2025 19:47:28 +0200 Subject: [PATCH] initial commit --- .gitea/workflows/build-go.yaml | 64 ++++++++++++++++++++++++++++++++++ README.md | 56 +++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 .gitea/workflows/build-go.yaml create mode 100644 README.md diff --git a/.gitea/workflows/build-go.yaml b/.gitea/workflows/build-go.yaml new file mode 100644 index 0000000..3860cce --- /dev/null +++ b/.gitea/workflows/build-go.yaml @@ -0,0 +1,64 @@ +name: Build Go Tarball + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Install dependencies + run: | + sudo apt-get update -y + sudo apt-get install -y curl tar jq + + - name: Determine latest Go release + id: get_go + run: | + LATEST=$(curl -s https://go.dev/dl/?mode=json | jq -r '.[0].version') + LATEST_NUM=${LATEST#go} # strip leading "go" + echo "LATEST=$LATEST_NUM" >> $GITHUB_ENV + echo "Latest Go version: $LATEST_NUM" + + - name: Check if package already exists + env: + GITEA_TOKEN: ${{ secrets.CI_BOT_TOKEN }} + LATEST: ${{ env.LATEST }} + run: | + EXISTS=$(curl -s -H "Authorization: token $GITEA_TOKEN" \ + "https://gitea.lulz.ltd/api/packages/list?owner=stacksmith&repo=go" || echo "[]" \ + | jq -r ".[] | select(.name==\"golang\" and .version==\"${LATEST}-debian12\") | .name") + if [ -n "$EXISTS" ]; then + echo "Package golang-${LATEST}-debian12 already exists. Skipping build." + exit 0 + fi + + - name: Download official Go tarball + env: + LATEST: ${{ env.LATEST }} + run: | + echo "Downloading: https://go.dev/dl/go${LATEST}.linux-amd64.tar.gz" + curl -LO https://go.dev/dl/go${LATEST}.linux-amd64.tar.gz + mkdir -p golang-${LATEST}-linux-amd64-debian-12/files + tar -xzf go${LATEST}.linux-amd64.tar.gz -C golang-${LATEST}-linux-amd64-debian-12/files + ls -R golang-${LATEST}-linux-amd64-debian-12/files + + - name: Package tarball + env: + LATEST: ${{ env.LATEST }} + run: | + tar -czf golang-${LATEST}-linux-amd64-debian-12.tar.gz golang-${LATEST}-linux-amd64-debian-12 + ls -lh golang-${LATEST}-linux-amd64-debian-12.tar.gz + + - name: Upload to Gitea Packages + env: + GITEA_TOKEN: ${{ secrets.CI_BOT_TOKEN }} + LATEST: ${{ env.LATEST }} + run: | + curl -X POST \ + -H "Authorization: token $GITEA_TOKEN" \ + -F "package=@golang-${LATEST}-linux-amd64-debian-12.tar.gz" \ + "https://gitea.lulz.ltd/api/packages/upload?owner=stacksmith&repo=go&package_name=golang&package_version=${LATEST}-debian12" diff --git a/README.md b/README.md new file mode 100644 index 0000000..786a7c6 --- /dev/null +++ b/README.md @@ -0,0 +1,56 @@ +# stacksmith/go + +A repository and CI pipeline to automatically build and package Go binaries as lulz tarballs for Debian 12 (`bookworm`). + +This project generates `golang--linux-amd64-debian-12.tar.gz` tarballs, suitable for inclusion in custom Docker images or CI/CD pipelines. + +--- + +## Features + +- Builds **latest Go releases** automatically from source. +- Produces a **lulz tarball** with `files/` folder structure. +- **Idempotent CI workflow**: skips building if the tarball already exists in Gitea Packages. +- Uploads tarballs to **Gitea Packages** for reuse in your pipelines. +- Works with **Debian 12 (Bookworm)** environments. + +--- + +## Usage + +### 1. Build locally + +``` +# Clone the repository +git clone https://gitea.lulz.ltd/stacksmith/go.git +cd go + +# Determine the Go version to build +LATEST=v1.24.7 # or use the latest release + +# Download and extract Go source +curl -LO https://go.dev/dl/${LATEST}.src.tar.gz +tar -xzf ${LATEST}.src.tar.gz + +# Build Go +cd go/src +./make.bash +cd ../.. + +# Package tarball +mkdir -p golang-${LATEST}-linux-amd64-debian-12/files +cp -r go/* golang-${LATEST}-linux-amd64-debian-12/files/ +tar -czf golang-${LATEST}-linux-amd64-debian-12.tar.gz golang-${LATEST}-linux-amd64-debian-12 +``` + +### 2. Use in Docker + +``` +FROM debian:bookworm-slim + +COPY golang-1.24.7-linux-amd64-debian-12.tar.gz /opt/lulz/ +RUN tar -zxf /opt/lulz/golang-1.24.7-linux-amd64-debian-12.tar.gz \ + -C /opt/lulz --strip-components=2 --no-same-owner --wildcards '*/files' + +ENV PATH="/opt/lulz/go/bin:${PATH}" +``` \ No newline at end of file