Skip to content

Commit

Permalink
add retroachievements gowon module
Browse files Browse the repository at this point in the history
  • Loading branch information
shanedabes committed Nov 14, 2021
1 parent 4f34814 commit c83b753
Show file tree
Hide file tree
Showing 22 changed files with 693 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/renovate.json
@@ -0,0 +1,5 @@
{
"extends": [
"config:base"
]
}
166 changes: 166 additions & 0 deletions .github/workflows/release.yaml
@@ -0,0 +1,166 @@
---
name: Release

on:
workflow_dispatch:
push:
branches:
- main
paths:
- '*.go'
- Dockerfile
- go.mod
- go.sum
pull_request:
paths:
- '*.go'
- Dockerfile
- go.mod
- go.sum

jobs:
hadolint:
name: Run hadolint
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: hadolint
uses: reviewdog/action-hadolint@v1.25.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
filter_mode: diff_context
fail_on_error: true

gotest:
name: Go test
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17

- name: Test
run: go test -v ./...


build:
name: Build
runs-on: ubuntu-20.04
needs:
- hadolint
- gotest
if: "!contains(github.event.head_commit.message, '[ci-skip]')"

steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.9.10
with:
versionSpec: '5.x'

- name: GitVersion
id: gitversion
uses: gittools/actions/gitversion/execute@v0.9.10

- name: Prepare
id: prep
run: |
if test -f "./goss.yaml"; then
echo ::set-output name=goss::true
else
echo ::set-output name=goss::false
fi
if [ "${{github.event_name}}" == "pull_request" ]; then
echo ::set-output name=push::false
echo ::set-output name=cache_from::"type=local,src=/tmp/.buildx-cache"
echo ::set-output name=cache_to::""
else
echo ::set-output name=push::true
echo ::set-output name=cache_from::"type=local,src=/tmp/.buildx-cache"
echo ::set-output name=cache_to::"type=local,dest=/tmp/.buildx-cache,mode=max"
fi
echo ::set-output name=gitversionf::${GITVERSION_FULLSEMVER/+/-}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: amd64,arm64

- name: Login to GHCR
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Install and configure Buildx
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
version: latest
driver-opts: image=moby/buildkit:latest

- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: docker-cache
restore-keys: docker-cache

# Install the GOSS testing framework
- name: Set up goss/dgoss
uses: e1himself/goss-installation-action@v1.0.4
if: ${{ steps.prep.outputs.goss == 'true' }}
with:
version: 'v0.3.16'

# Creates a local build to run tests on
- name: Build and Load local test-container
if: ${{ steps.prep.outputs.goss == 'true' }}
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
load: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.container }}:test
cache-from: ${{ steps.prep.outputs.cache_from }}
cache-to: ${{ steps.prep.outputs.cache_to }}

# Run GOSS tests if included with the container
- name: Run GOSS tests
if: ${{ steps.prep.outputs.goss == 'true' }}
env:
GOSS_FILE: ./goss.yaml
run: |
dgoss run ghcr.io/${{ github.repository_owner }}/${{ matrix.container }}:test
# Push if not a PR, otherwise just test the build process for all requested platforms
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
file: ./Dockerfile
push: ${{ steps.prep.outputs.push }}
tags: |
ghcr.io/${{ github.repository_owner }}/gowon-retroachievements:latest
ghcr.io/${{ github.repository_owner }}/gowon-retroachievements:${{ steps.prep.outputs.gitversionf }}
cache-from: ${{ steps.prep.outputs.cache_from }}
cache-to: ${{ steps.prep.outputs.cache_to }}
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
kv.db
11 changes: 11 additions & 0 deletions Dockerfile
@@ -0,0 +1,11 @@
FROM golang:alpine as build-env
COPY . /src
WORKDIR /src
RUN go build -o gowon-retroachievements

FROM alpine:3.14.2
RUN mkdir /data
ENV GOWON_RA_KV_PATH /data/kv.db
WORKDIR /app
COPY --from=build-env /src/gowon-retroachievements /app/
ENTRYPOINT ["./gowon-retroachievements"]
2 changes: 1 addition & 1 deletion README.md
@@ -1 +1 @@
# gowon-retroachievements
# gowon-retroachievements
9 changes: 9 additions & 0 deletions demo/README.md
@@ -0,0 +1,9 @@
# Bot demo

These files can be used to setup a test instance for demo or testing purposes using skaffold.

To run an ircd and bot instance in a kubernetes cluster (like k3d) cd to this directory and run:

skaffold dev --tail

An [tiny](https://github.com/osa1/tiny) deployment is included. To use it run `tiny.sh`.
1 change: 1 addition & 0 deletions demo/kube/.gitignore
@@ -0,0 +1 @@
deploy-retroachievements.yaml
10 changes: 10 additions & 0 deletions demo/kube/configmap-mosquitto.yaml
@@ -0,0 +1,10 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: mosquitto-config
data:
mosquitto.conf: |
listener 1883
protocol mqtt
allow_anonymous true
26 changes: 26 additions & 0 deletions demo/kube/configmap-tiny.yaml
@@ -0,0 +1,26 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: tiny-config
data:
tiny.yml: |
---
servers:
- addr: oragono
port: 6667
tls: false
realname: tester
nicks:
- tester
join:
- '#gowon'
defaults:
nicks:
- tester
realname: tester
join: []
tls: false
30 changes: 30 additions & 0 deletions demo/kube/deploy-gowon.yaml
@@ -0,0 +1,30 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gowon
labels:
app.kubernetes.io/name: gowon
spec:
selector:
matchLabels:
app.kubernetes.io/name: gowon
template:
metadata:
labels:
app.kubernetes.io/name: gowon
spec:
containers:
- name: gowon
image: ghcr.io/gowon-irc/gowon:0.1.0-66
env:
- name: GOWON_SERVER
value: oragono:6667
- name: GOWON_BROKER
value: mosquitto:1883
- name: GOWON_NICK
value: gowon
- name: GOWON_USER
value: gowon
- name: GOWON_CHANNELS
value: "#gowon"
22 changes: 22 additions & 0 deletions demo/kube/deploy-ircd.yaml
@@ -0,0 +1,22 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: oragono
labels:
app.kubernetes.io/name: oragono
spec:
selector:
matchLabels:
app.kubernetes.io/name: oragono
template:
metadata:
labels:
app.kubernetes.io/name: oragono
spec:
containers:
- name: oragono
image: oragono/oragono
ports:
- containerPort: 6667
name: ircd
30 changes: 30 additions & 0 deletions demo/kube/deploy-mosquitto.yaml
@@ -0,0 +1,30 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mosquitto
labels:
app.kubernetes.io/name: mosquitto
spec:
selector:
matchLabels:
app.kubernetes.io/name: mosquitto
template:
metadata:
labels:
app.kubernetes.io/name: mosquitto
spec:
containers:
- name: mosquitto
image: eclipse-mosquitto
ports:
- containerPort: 1883
name: mqtt
volumeMounts:
- name: mosquitto-config
mountPath: /mosquitto/config/mosquitto.conf
subPath: mosquitto.conf
volumes:
- name: mosquitto-config
configMap:
name: mosquitto-config
27 changes: 27 additions & 0 deletions demo/kube/deploy-tiny.yaml
@@ -0,0 +1,27 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: tiny
labels:
app.kubernetes.io/name: tiny
spec:
selector:
matchLabels:
app.kubernetes.io/name: tiny
template:
metadata:
labels:
app.kubernetes.io/name: tiny
spec:
containers:
- name: tiny
image: ghcr.io/shanedabes/tiny:v0.9.0
volumeMounts:
- name: tiny-config
mountPath: /tiny.yml
subPath: tiny.yml
volumes:
- name: tiny-config
configMap:
name: tiny-config
12 changes: 12 additions & 0 deletions demo/kube/svc-ircd.yaml
@@ -0,0 +1,12 @@
---
apiVersion: v1
kind: Service
metadata:
name: oragono
spec:
ports:
- name: ircd
port: 6667
targetPort: ircd
selector:
app.kubernetes.io/name: oragono
12 changes: 12 additions & 0 deletions demo/kube/svc-mosquitto.yaml
@@ -0,0 +1,12 @@
---
apiVersion: v1
kind: Service
metadata:
name: mosquitto
spec:
ports:
- name: mqtt
port: 1883
targetPort: mqtt
selector:
app.kubernetes.io/name: mosquitto

0 comments on commit c83b753

Please sign in to comment.