Skip to content

Commit

Permalink
Merge pull request #301 from llucax/gh-actions
Browse files Browse the repository at this point in the history
Migrate to GitHub Actions
  • Loading branch information
llucax authored Jan 7, 2022
2 parents 184f8df + 9666be3 commit 3c73ead
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 44 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [create, pull_request, push]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # Needed to make sure to proper git describe
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y install python3 python-docutils ruby-dev
sudo gem install fpm
- name: Build
run: make PYTHON=python3 all deb
- name: Archive package artifacts
uses: actions/upload-artifact@v2
with:
name: deb
path: deb/git-hub_*.deb
if-no-files-found: error
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion beaver
Submodule beaver deleted from c2c7a0
1 change: 0 additions & 1 deletion beaver.Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions docker/build

This file was deleted.

0 comments on commit 3c73ead

Please sign in to comment.