mirror of
https://github.com/Retropex/docker-bitcoind.git
synced 2025-05-29 05:22:36 +02:00
Run checks against pull requests (#26)
This commit is contained in:
commit
233cc53153
31
.github/workflows/pull-request.yml
vendored
Normal file
31
.github/workflows/pull-request.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: Build bitcoind on pull request
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build Bitcoind
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
|
||||||
|
env:
|
||||||
|
DOCKER_BUILDKIT: 1
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
subver:
|
||||||
|
- '0.16'
|
||||||
|
- '0.17'
|
||||||
|
- '0.18'
|
||||||
|
- '0.19'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1.0.0
|
||||||
|
|
||||||
|
- name: Build Bitcoind
|
||||||
|
run: docker build -t bitcoind ${{matrix.subver}}/
|
||||||
|
|
||||||
|
- name: Print Bitcoind version
|
||||||
|
run: |
|
||||||
|
docker run --rm --entrypoint=uname bitcoind -a
|
||||||
|
docker run --rm bitcoind --version
|
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
@ -66,4 +66,3 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
docker run --rm --entrypoint=uname bitcoind -a
|
docker run --rm --entrypoint=uname bitcoind -a
|
||||||
docker run --rm bitcoind --version
|
docker run --rm bitcoind --version
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user