Add a Github Action to test our docker build every day.
Runs at 5am UTC, which is ~midnight EST.
This commit is contained in:
parent
415e6309f9
commit
97420aae1b
1 changed files with 18 additions and 0 deletions
18
.github/workflows/docker.yml
vendored
Normal file
18
.github/workflows/docker.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Reproducible Build Check
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 5 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build image
|
||||||
|
run: cd reproducible-builds && docker build -t signal-android . && cd ..
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: docker run --rm -v $(pwd):/project -w /project signal-android ./gradlew clean assembleRelease
|
Loading…
Add table
Reference in a new issue