We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f7921b commit c45bff4Copy full SHA for c45bff4
.github/workflows/packaging.yml
@@ -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
26
+ with:
27
+ repository: packpack/packpack
28
+ path: packpack
29
30
+ - name: Create packages
31
+ run: ./packpack/packpack
rpm/prebuild.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+set -e -o pipefail
+curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash
0 commit comments