Skip to content

Commit

Permalink
Migrate to GitHub Actions from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 11, 2023
1 parent 017b79e commit 79b4dd9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: CI

on: [push, pull_request]

jobs:
vanilla:
runs-on: ubuntu-20.04
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-20.04
steps:
- run: env
- uses: actions/checkout@v3
- run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest
- run: make reprotest
# reproducibility-securedrop:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest
# - run: make reprotest-sd

0 comments on commit 79b4dd9

Please sign in to comment.