Skip to content

Commit 62d6076

Browse files
Add workflow for docker
1 parent 3dd9d9d commit 62d6076

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

Diff for: .github/workflows/docker.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Docker
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
- 'release/**'
9+
10+
jobs:
11+
tests:
12+
runs-on: ubuntu-latest
13+
if: "!contains(github.event.head_commit.message, 'skip ci')"
14+
strategy:
15+
matrix:
16+
env:
17+
- SCRIPT: docker_images
18+
19+
env: ${{ matrix.env }}
20+
timeout-minutes: 70
21+
continue-on-error: true
22+
steps:
23+
- uses: actions/checkout@v2
24+
with:
25+
fetch-depth: 0
26+
- name: Build Docker images
27+
run: |
28+
bash -x "./examples/${SCRIPT}.sh"

Diff for: README.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ A set of build scripts for GNU Privacy Guard.
5252
|image:https://github.com/rnpgp/gpg-build-scripts/actions/workflows/macos-10.15-head.yml/badge.svg["macOS 10.15 (head)", link="https://github.com/rnpgp/gpg-build-scripts/actions/workflows/macos-10.15-head.yml"]
5353
|==========================
5454

55+
image:https://github.com/rnpgp/gpg-build-scripts/actions/workflows/docker.yml/badge.svg["Docker", link="https://github.com/rnpgp/gpg-build-scripts/actions/workflows/docker.yml"]
5556

5657
== Prerequisites
5758

0 commit comments

Comments
 (0)