-
Notifications
You must be signed in to change notification settings - Fork 49
28 lines (26 loc) · 1.04 KB
/
build-tdnf-rpms.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
name: tdnf RPMs
on: [pull_request, push, workflow_dispatch]
jobs:
photon-rpms:
env:
DIST: photon
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build container
working-directory: ${{ github.workspace }}
run: |
docker build -t ${DIST}/tdnf-build -f ci/Dockerfile.${DIST} .
- name: build rpms in container
working-directory: ${{ github.workspace }}
run: |
docker run --rm -e DIST -v$(pwd):/build -w/build ${DIST}/tdnf-build ./ci/build-rpms.sh
- name: run pytests package
working-directory: ${{ github.workspace }}
run: |
docker run --rm -v$(pwd)/rpms:/rpms ${DIST} /bin/sh -c 'tdnf -y --repofrompath=tdnf,/rpms install tdnf-pytests && pytest /usr/share/tdnf/pytests/'
- name: upload RPMs
uses: actions/upload-artifact@v4
with:
name: tdnf-rpms
path: rpms