Skip to content

Commit

Permalink
cd: build rpm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
artembo committed Jul 6, 2022
1 parent e3b35bf commit 1bc51bb
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: packaging

on:
push:

jobs:
package:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
platform:
- { os: 'fedora', dist: '34' }

env:
OS: ${{ matrix.platform.os }}
DIST: ${{ matrix.platform.dist }}

steps:
- name: Clone the module
uses: actions/checkout@v2

- name: Clone the packpack tool
uses: actions/checkout@v2
with:
repository: packpack/packpack
path: packpack

- name: Create packages
run: ./packpack/packpack
5 changes: 5 additions & 0 deletions rpm/prebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

curl -LsSf https://www.tarantool.io/release/2/installer.sh | sudo bash

cmake .

0 comments on commit 1bc51bb

Please sign in to comment.