allow unprivileged user to run 'makecache' and 'clean' with alternate config #731
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |