Skip to content

Commit

Permalink
Merge pull request #7 from OpenCHAMI/ochami-test-and-lint
Browse files Browse the repository at this point in the history
Setting up github actions to run unit tests
  • Loading branch information
alexlovelltroy authored Jan 19, 2024
2 parents 7166ffe + ea5100f commit 35302d6
Show file tree
Hide file tree
Showing 10 changed files with 87 additions and 118 deletions.
2 changes: 0 additions & 2 deletions .github/CODEOWNERS

This file was deleted.

58 changes: 0 additions & 58 deletions .github/pull_request_template.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/build_and_release_ct_image.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/build_and_release_image.yaml

This file was deleted.

64 changes: 64 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Release with goreleaser

on:
push:
tags:
- v*
permissions: write-all # Necessary for creating containers

jobs:

build:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: 1
fetch-depth: 1
- name: Unit Tests
run: go test -v ./...
- name: Release with goreleaser
uses: goreleaser/goreleaser-action@v5
env:
GITHUB_TOKEN: ${{ github.token }}
with:
version: latest
args: release --clean
id: goreleaser
- name: Process goreleaser output
id: process_goreleaser_output
run: |
echo "const fs = require('fs');" > process.js
echo 'const artifacts = ${{ steps.goreleaser.outputs.artifacts }}' >> process.js
echo "const firstNonNullDigest = artifacts.find(artifact => artifact.extra && artifact.extra.Digest != null)?.extra.Digest;" >> process.js
echo "console.log(firstNonNullDigest);" >> process.js
echo "fs.writeFileSync('digest.txt', firstNonNullDigest);" >> process.js
node process.js
echo "digest=$(cat digest.txt)" >> $GITHUB_OUTPUT
- name: Attest Binaries
uses: github-early-access/generate-build-provenance@main
with:
subject-path: dist/bss
- name: generate build provenance
uses: github-early-access/generate-build-provenance@main
with:
subject-name: ghcr.io/openchami/ochami-init
subject-digest: ${{ steps.process_goreleaser_output.outputs.digest }}
push-to-registry: true
8 changes: 0 additions & 8 deletions .github/workflows/run_ct_test.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/run_open-api-tavern-coverage.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/workflows/run_unit_test.yaml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/unit_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Unit Tests
on: [push, pull_request]

jobs:
build:
defaults:
run:
working-directory: ./cmd/boot-script-service
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test

4 changes: 2 additions & 2 deletions cmd/boot-script-service/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func sqlDefaultRetryConfig() (retryCount uint64, retryWait uint64, err error) {
if envRetryCount != "" {
retryCount, err = strconv.ParseUint(envRetryCount, 10, 64)
if err != nil {
err = fmt.Errorf("ERROR: unable to parse SQL_RETRY_COUNT environment variable: ", err)
err = fmt.Errorf("ERROR: unable to parse SQL_RETRY_COUNT environment variable: %v", err)
return kvDefaultRetryCount, kvDefaultRetryWait, err
}
}
Expand All @@ -182,7 +182,7 @@ func sqlDefaultRetryConfig() (retryCount uint64, retryWait uint64, err error) {
if envRetryWait != "" {
retryWait, err = strconv.ParseUint(envRetryWait, 10, 64)
if err != nil {
err = fmt.Errorf("ERROR: unable to parse SQL_RETRY_WAIT environment variable: ", err)
err = fmt.Errorf("ERROR: unable to parse SQL_RETRY_WAIT environment variable: %v", err)
return kvDefaultRetryWait, kvDefaultRetryWait, err
}
}
Expand Down

0 comments on commit 35302d6

Please sign in to comment.