Fix issue #222 - git links for Debian builds #13
This file contains hidden or 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: Build distribution packages | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| rpm_test_build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Build image based on RHEL7 | |
| run: docker build -t sems -f Dockerfile-rhel7 . | |
| - name: Build image based on RHEL8 | |
| run: docker build -t sems -f Dockerfile-rhel8 . | |
| - name: Build image based on RHEL9 | |
| run: docker build -t sems -f Dockerfile-rhel9 . | |
| deb_test_build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Build image based on Debian 11 | |
| run: docker build -t sems -f Dockerfile-debian11 . | |
| - name: Build image based on Debian 12 | |
| run: docker build -t sems -f Dockerfile-debian12 . |