Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
74 changes: 74 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
tag:
description: "Existing linuxaid-cli release tag to (re)bump LinuxAid against, e.g. v1.8.0. Lets bump-linuxaid be tested without cutting a new release."
required: true

permissions:
contents: write

jobs:
goreleaser:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -26,3 +32,71 @@ jobs:
args: release --clean -f .goreleaser-github.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

bump-linuxaid:
needs: goreleaser
if: always() && (needs.goreleaser.result == 'success' || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
steps:
- name: Checkout linuxaid-cli
uses: actions/checkout@v5.0.0

- name: Set up Go
uses: actions/setup-go@v6.0.0
with:
go-version-file: go.mod

- name: Compute version
id: version
run: |
TAG="${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref_name }}"
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
echo "version=${TAG#v}" >> "$GITHUB_OUTPUT"

- name: Download release checksums
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release download "${{ steps.version.outputs.tag }}" \
--repo Obmondo/linuxaid-cli \
--pattern "linuxaid-cli_${{ steps.version.outputs.version }}_checksums.txt" \
--output checksums.txt

- name: Checkout LinuxAid
uses: actions/checkout@v5.0.0
with:
repository: Obmondo/LinuxAid
token: ${{ secrets.LINUXAID_REPO_TOKEN }}
path: LinuxAid

- name: Bump version and checksums in LinuxAid hiera data
run: |
go run ./scripts/bump-linuxaid-hiera LinuxAid "${{ steps.version.outputs.version }}" checksums.txt

- name: Open PR against LinuxAid
env:
GH_TOKEN: ${{ secrets.LINUXAID_REPO_TOKEN }}
working-directory: LinuxAid
run: |
VERSION="${{ steps.version.outputs.version }}"
BRANCH="bump-linuxaid-cli-${VERSION}"

if ! git diff --quiet; then
git config user.name "obmondo-bot"
git config user.email "bot@obmondo.com"
git checkout -B "${BRANCH}"
git add modules/enableit/common/data/common.yaml \
modules/enableit/common/data/architectures/armv7l.yaml \
modules/enableit/common/data/architectures/aarch64.yaml
git commit -m "Bump linuxaid-cli to ${VERSION}" \
-m "Automated bump triggered by Obmondo/linuxaid-cli release v${VERSION}. Checksums taken from the release's checksums.txt. Keeps the newest 4 versions in each hiera checksums map."
git push --force-with-lease origin "${BRANCH}"
gh pr create \
--repo Obmondo/LinuxAid \
--title "Bump linuxaid-cli to ${VERSION}" \
--body "Automated bump triggered by [Obmondo/linuxaid-cli v${VERSION}](https://github.com/Obmondo/linuxaid-cli/releases/tag/v${VERSION})." \
--head "${BRANCH}" \
|| echo "PR create failed or already exists for ${BRANCH}, check manually."
else
echo "No changes detected, skipping PR (already up to date)."
fi
171 changes: 171 additions & 0 deletions scripts/bump-linuxaid-hiera/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
// Command bump-linuxaid-hiera bumps the linuxaid-cli version/checksums pinned
// in the LinuxAid Puppet control repo's hiera data.
//
// Usage: bump-linuxaid-hiera <path-to-LinuxAid-checkout> <version> <checksums.txt>
//
// Updates, per architecture:
// - modules/enableit/common/data/common.yaml (amd64, also holds the version pin)
// - modules/enableit/common/data/architectures/armv7l.yaml (armv7)
// - modules/enableit/common/data/architectures/aarch64.yaml (arm64)
//
// Edits are done with targeted regexes rather than a full YAML
// parse/re-encode, so every other line and comment in these files is left
// byte-for-byte untouched.
//
// Keeps only the newest keepVersions checksum entries per file.
package main

import (
"bufio"
"fmt"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
)

const keepVersions = 4

const (
versionKey = "common::system::openvox::linuxaid_cli::version"
checksumsKey = "common::system::openvox::linuxaid_cli::checksums"
)

// files maps each hiera file (relative to the LinuxAid repo root) to the
// release asset architecture suffix it tracks.
var files = map[string]string{
"modules/enableit/common/data/common.yaml": "amd64",
"modules/enableit/common/data/architectures/armv7l.yaml": "armv7",
"modules/enableit/common/data/architectures/aarch64.yaml": "arm64",
}

var (
checksumsBlockRe = regexp.MustCompile(
`(?m)(^` + regexp.QuoteMeta(checksumsKey) + `:\n)((?:^ \d+\.\d+\.\d+: [0-9a-f]+\n)+)`,
)
entryLineRe = regexp.MustCompile(`(?m)^ (\d+\.\d+\.\d+): ([0-9a-f]+)\n`)
versionLineRe = regexp.MustCompile(`(?m)^` + regexp.QuoteMeta(versionKey) + `: .*$`)
)

func parseChecksums(path string) (map[string]string, error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()

sums := make(map[string]string)
scanner := bufio.NewScanner(f)
for scanner.Scan() {
fields := strings.Fields(scanner.Text())
if len(fields) < 2 {
continue
}
sums[fields[1]] = fields[0]
}
return sums, scanner.Err()
}

func shaForArch(sums map[string]string, arch, checksumsPath string) (string, error) {
suffix := fmt.Sprintf("_linux_%s.tar.gz", arch)
for name, sha := range sums {
if strings.HasSuffix(name, suffix) {
return sha, nil
}
}
return "", fmt.Errorf("no checksum ending in %q found in %s", suffix, checksumsPath)
}

type checksumEntry struct {
version string
sha string
}

func bumpChecksumsBlock(text, version, sha string) (string, error) {
loc := checksumsBlockRe.FindStringSubmatchIndex(text)
if loc == nil {
return "", fmt.Errorf("could not find %q block", checksumsKey)
}
header := text[loc[2]:loc[3]]
entriesBlock := text[loc[4]:loc[5]]

var entries []checksumEntry
for _, m := range entryLineRe.FindAllStringSubmatch(entriesBlock, -1) {
if m[1] == version {
continue
}
entries = append(entries, checksumEntry{version: m[1], sha: m[2]})
}
entries = append([]checksumEntry{{version: version, sha: sha}}, entries...)
if len(entries) > keepVersions {
entries = entries[:keepVersions]
}

var b strings.Builder
b.WriteString(header)
for _, e := range entries {
fmt.Fprintf(&b, " %s: %s\n", e.version, e.sha)
}

return text[:loc[0]] + b.String() + text[loc[1]:], nil
}

func bumpVersionLine(text, version string) string {
return versionLineRe.ReplaceAllStringFunc(text, func(string) string {
return versionKey + ": " + version
})
}

func run(repoRoot, version, checksumsPath string) error {
sums, err := parseChecksums(checksumsPath)
if err != nil {
return err
}

relPaths := make([]string, 0, len(files))
for p := range files {
relPaths = append(relPaths, p)
}
sort.Strings(relPaths)

for _, relPath := range relPaths {
arch := files[relPath]
fullPath := filepath.Join(repoRoot, relPath)

data, err := os.ReadFile(fullPath)
if err != nil {
return err
}

sha, err := shaForArch(sums, arch, checksumsPath)
if err != nil {
return err
}

text, err := bumpChecksumsBlock(string(data), version, sha)
if err != nil {
return fmt.Errorf("%s: %w", relPath, err)
}
text = bumpVersionLine(text, version)

if err := os.WriteFile(fullPath, []byte(text), 0o644); err != nil {
return err
}
fmt.Printf("updated %s (%s -> %s)\n", relPath, arch, sha)
}

return nil
}

func main() {
if len(os.Args) != 4 {
fmt.Fprintln(os.Stderr, "usage: bump-linuxaid-hiera <path-to-LinuxAid-checkout> <version> <checksums.txt>")
os.Exit(1)
}

if err := run(os.Args[1], os.Args[2], os.Args[3]); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}