-
Notifications
You must be signed in to change notification settings - Fork 2
30 lines (28 loc) · 885 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
name: CI
on: [push, pull_request]
jobs:
vanilla:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt-get update && sudo apt-get install -y make build-essential
- run: make vanilla
reproducibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: env
- run: |
sudo mkdir /nonexistent
sudo mkdir /nonexistent/second-build
- run: |
ACTIONS_RUNNER=$USER sudo chown -R $ACTIONS_RUNNER: /nonexistent
- run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest
- run: make reprotest
# reproducibility-securedrop:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest
# - run: make reprotest-sd