Update Konflux references #603
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: Pull request pre-check build & test | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
pre-commit: | |
name: Run the pre-commit hook | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- uses: pre-commit/[email protected] | |
build-container: | |
name: Build and test the ipa-tuura container | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'freeipa' | |
needs: [pre-commit] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build image | |
id: build-image | |
run: | | |
sudo -E su | |
podman build -t ipatuura -f Containerfile . | |
- name: Deploy the service | |
run: | | |
sudo -E su | |
podman run -d --privileged \ | |
-p 8000:8000 -p 3501:3500 -p 4701:81 -p 4430:443 \ | |
--hostname bridge.ipa.test \ | |
--name bridge \ | |
ipatuura | |
- name: Run the unit tests | |
run: | | |
sudo -E su | |
podman exec -it bridge sh -c "pip install coverage factory_boy && | |
coverage run manage.py test domains -v 2 && | |
coverage report && | |
coverage html" |