forked from katef/kgt
-
Notifications
You must be signed in to change notification settings - Fork 1
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 katef#46 from katef/kate/update-fpm-maybe
Update fpm for broken packaging in CI
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -27,6 +27,8 @@ jobs: | |
run: | | ||
uname -a | ||
sudo apt-get install bmake | ||
sudo gem install --no-document fpm | ||
fpm -v | ||
${{ matrix.cc }} --version | ||
- name: make | ||
|
@@ -44,13 +46,11 @@ jobs: | |
- name: install | ||
run: | | ||
bmake -r -j 2 PKGCONF=pkg-config CC=${{ matrix.cc }} PREFIX=prefix/usr install | ||
mkdir pkg | ||
- name: Package | ||
uses: bpicode/github-action-fpm@master | ||
with: | ||
fpm_args: '' | ||
fpm_opts: '-C prefix -p pkg/ -n kgt -t ${{ matrix.pkg }} -v 0.${{ github.sha }} -m [email protected] -s dir' | ||
run: | | ||
mkdir pkg | ||
fpm -C prefix -p pkg/ -n kgt -t ${{ matrix.pkg }} -v 0.${{ github.sha }} -m [email protected] -s dir | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
|