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

Runs at 5am UTC, which is ~midnight EST.
fork-5.53.8
Greyson Parrelli 2020-10-12 19:50:25 -04:00
rodzic 415e6309f9
commit 97420aae1b
1 zmienionych plików z 18 dodań i 0 usunięć

18
.github/workflows/docker.yml vendored 100644
Wyświetl plik

@ -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