Skip to content

Commit c45bff4

Browse files
committed
cd: build rpm packages
1 parent 2f7921b commit c45bff4

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.github/workflows/packaging.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: packaging
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
package:
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
platform:
14+
- { os: 'fedora', dist: '33' }
15+
16+
env:
17+
OS: ${{ matrix.platform.os }}
18+
DIST: ${{ matrix.platform.dist }}
19+
20+
steps:
21+
- name: Clone the module
22+
uses: actions/checkout@v2
23+
24+
- name: Clone the packpack tool
25+
uses: actions/checkout@v2
26+
with:
27+
repository: packpack/packpack
28+
path: packpack
29+
30+
- name: Create packages
31+
run: ./packpack/packpack

rpm/prebuild.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
set -e -o pipefail
4+
5+
curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash

0 commit comments

Comments
 (0)