Add a Github Action to test our docker build every day.

Runs at 5am UTC, which is ~midnight EST.
This commit is contained in:
Greyson Parrelli 2020-10-12 19:50:25 -04:00
parent 415e6309f9
commit 97420aae1b

18
.github/workflows/docker.yml vendored Normal file
View 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