Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jcorporation/myMPD
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Dec 19, 2019
2 parents 049366b + b4e97db commit f946e36
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build_debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: debug

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: installdeps
run: ./build.sh installdeps
- name: build
run: ./build.sh memcheck
14 changes: 14 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: release
on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: installdeps
run: ./build.sh installdeps
- name: build
run: ./build.sh releaseinstall
14 changes: 14 additions & 0 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Docker Image CI

on: [push]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Build the Docker image
run: docker build . --file contrib/packaging/docker/Dockerfile --tag my-image-name:$(date +%s)

0 comments on commit f946e36

Please sign in to comment.