-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from llucax/gh-actions
Migrate to GitHub Actions
- Loading branch information
Showing
6 changed files
with
23 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule beaver
deleted from
c2c7a0
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.