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 34121aa
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
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: sudo systemctl status docker
# - run: docker ps -a
- uses: actions/checkout@v3
- run: echo $PWD
- run: kernel_dir="$PWD/build" && mkdir -p -m 755 "$kernel_dir"
# - run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest
# - run: make reprotest
# - run: ./scripts/build-kernel-wrapper
# 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 34121aa

Please sign in to comment.