Skip to content

Commit

Permalink
Migrate to GitHub Actions away from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 7, 2023
1 parent 0630dfa commit c4cc3e3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 58 deletions.
58 changes: 0 additions & 58 deletions .circleci/config.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: ci

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:32
steps:
- run: dnf install -y make
- uses: actions/checkout@v3
- name: Install dependencies
run: |
make install-deps
pip install --require-hashes -r requirements/dev-requirements.txt
- name: Run linters
run: make lint
build-rpm:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:32
steps:
- run: dnf install -y make git
- uses: actions/checkout@v3
- name: Install dependencies
run: |
make install-deps
pip install --require-hashes -r requirements/dev-requirements.txt
- name: Build RPM
run: make build-rpm
- name: Check reproducibility
run: make reprotest
launcher-tests:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:32
steps:
- run: dnf install -y make
- uses: actions/checkout@v3
- name: Install dependencies
run: |
make install-deps
pip install --require-hashes -r launcher/dev-requirements.txt
- name: Run launcher tests
run: |
cd launcher/
make check

0 comments on commit c4cc3e3

Please sign in to comment.