Mark current dir as safe for git in build-srpm.sh #33
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: build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: centos-stream-8 | |
shortcut: cs8 | |
container-name: el8stream | |
- name: centos-stream-9 | |
shortcut: cs9 | |
container-name: el9stream | |
name: ${{ matrix.name }} | |
env: | |
ARTIFACTS_DIR: exported-artifacts | |
container: | |
image: quay.io/ovirt/buildcontainer:${{ matrix.container-name }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Use cache for maven | |
uses: actions/cache@v2 | |
with: | |
path: /root/.m2/repository | |
key: ${{ matrix.shortcut }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ matrix.shortcut }}-maven- | |
- name: Perform build | |
run: | | |
.automation/build-rpm.sh $ARTIFACTS_DIR | |
- name: Upload RPMs | |
uses: ovirt/upload-rpms-action@v2 | |
with: | |
directory: ${{ env.ARTIFACTS_DIR }} |