Skip to content

Commit

Permalink
Migrate to GitHub Actions
Browse files Browse the repository at this point in the history
Drop the broken and unused reprotest-sd job entirely, leave a
more accurate comment explaining why.
  • Loading branch information
legoktm committed Feb 21, 2024
1 parent 017b79e commit cd55448
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 43 deletions.
43 changes: 0 additions & 43 deletions .circleci/config.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on: [push, pull_request]

jobs:
vanilla:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make build-essential

- name: Build vanilla kernel
run: make vanilla

reproducibility:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make build-essential reprotest

- name: Run reprotest
# n.b. we don't run reprotest-sd because our kernels are not reproducible yet
# and also very slow. See <https://github.com/freedomofpress/kernel-builder/issues/3>.
run: make reprotest

0 comments on commit cd55448

Please sign in to comment.