Skip to content

Commit

Permalink
Add a Github Action to test our docker build every day.
Browse files Browse the repository at this point in the history
Runs at 5am UTC, which is ~midnight EST.
  • Loading branch information
greyson-signal committed Oct 15, 2020
1 parent 415e630 commit 97420aa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 97420aa

Please sign in to comment.