-
Notifications
You must be signed in to change notification settings - Fork 27
36 lines (29 loc) · 1.16 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
on:
push:
branches:
- master
- next
pull_request:
branches:
- next
jobs:
build:
runs-on: ubuntu-latest
name: Unittest and Build RPMs
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: 3.11
architecture: x64
- name: unittest
run: |
pip install -r test-requirements.txt
pytest ./tests
- name: Build RPM (Centos:7)
run: docker run -v `pwd`:/scylla-machine-image -w /scylla-machine-image --rm centos:7.2.1511 bash -c './dist/redhat/build_rpm.sh -t centos7'
- name: Build RPM (Rockylinux:8)
run: docker run -v `pwd`:/scylla-machine-image -w /scylla-machine-image --rm rockylinux:8 bash -c 'dnf update -y; dnf install -y git ; git config --global --add safe.directory "*"; ./dist/redhat/build_rpm.sh -t centos8'
- name: Build DEB (Ubuntu:22.04)
run: docker run -v `pwd`:/scylla-machine-image -w /scylla-machine-image --rm ubuntu:22.04 bash -c 'apt update -y; apt install -y git ; git config --global --add safe.directory "*"; ./dist/debian/build_deb.sh'