mirror of https://github.com/dirtbags/moth.git
Merge pull request #133 from dirtbags/add_autobuild_and_testing
Add autobuild
This commit is contained in:
commit
66d90dbb04
|
@ -0,0 +1,12 @@
|
|||
name: moth-devel Docker build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build-devel:
|
||||
name: Build moth-devel
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Retrieve code
|
||||
uses: actions/checkout@v1
|
||||
- name: Build mothd
|
||||
run: docker build -f Dockerfile.moth-devel .
|
|
@ -0,0 +1,12 @@
|
|||
name: Mothd Docker build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build-mothd:
|
||||
name: Build mothd
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Retrieve code
|
||||
uses: actions/checkout@v1
|
||||
- name: Build mothd
|
||||
run: docker build -f Dockerfile.moth .
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- A CONTRIBUTING.md to describe expectations when contributing to MOTH
|
||||
- Include basic metadata in mothballs
|
||||
- add_script_stream convenience function allows easy script addition to puzzle
|
||||
- Autobuild Docker images to test buildability
|
||||
### Fixed
|
||||
- Handle cases where non-legacy puzzles don't have an `author` attribute
|
||||
- Handle YAML-formatted file and script lists as expected
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
Dirtbags Monarch Of The Hill Server
|
||||
=====================
|
||||
|
||||
Master:
|
||||
![](https://github.com/dirtbags/moth/workflows/Mothd%20Docker%20build/badge.svg?branch=master)
|
||||
![](https://github.com/dirtbags/moth/workflows/moth-devel%20Docker%20build/badge.svg?branch=master)
|
||||
|
||||
Devel:
|
||||
![](https://github.com/dirtbags/moth/workflows/Mothd%20Docker%20build/badge.svg?branch=devel)
|
||||
![](https://github.com/dirtbags/moth/workflows/moth-devel%20Docker%20build/badge.svg?branch=devel)
|
||||
|
||||
This is a set of thingies to run our Monarch-Of-The-Hill contest,
|
||||
which in the past has been called
|
||||
"Tracer FIRE",
|
||||
|
|
Loading…
Reference in New Issue