-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 1.48 KB
/
rpm.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
name: RPM package
on:
pull_request:
jobs:
build-rpm-package:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install -y perl dh-python pcscd swig libpcsclite1 libpcsclite-dev usbutils build-essential debhelper python3-pytest scdaemon yubikey-manager
- name: Install protoc
uses: actions/setup-python@v2
- run: pip install --upgrade pip poetry
- run: poetry install --no-interaction --no-root
- run: poetry run python -m grpc_tools.protoc -Iproto --python_out=yubi_bridge --grpc_python_out=yubi_bridge proto/worker/worker.proto
- run: sed -i 's/from worker import worker_pb2 as worker_dot_worker__pb2/from . import worker_pb2 as worker_dot_worker__pb2/g' yubi_bridge/worker/worker_pb2_grpc.py
- name: Setup rpm package
run: poetry run python3 setup.py bdist_rpm
- name: Move artifact
run: mv dist/yubi-bridge-0.1.0-1.src.rpm ./
- name: Rename artifact
run: mv yubi-bridge-0.1.0-1.src.rpm yubi-brdige-${{ github.ref_name }}.rpm
- name: Upload Debian package artifact
uses: actions/upload-artifact@v2
with:
name: yubi-bridge-${{ github.ref_name}}.rpm
path: yubi-bridge-${{ github.ref_name}}.rpm