From b462865dbb979c35541321c283f77a2b2270aec5 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Fri, 1 Mar 2024 11:24:20 +0200 Subject: [PATCH] Add github action to build systemd packages Signed-off-by: Evan Lezar --- .github/workflows/build.yaml | 63 ++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..1725d57f --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,63 @@ +# Copyright 2024 NVIDIA CORPORATION +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Run this workflow on pull requests +name: build + +on: + pull_request: + types: + - opened + - synchronize + branches: + - main + - release-* + push: + branches: + - main + - release-* + +jobs: + packages: + runs-on: ubuntu-latest + strategy: + matrix: + package: + - deb + - rpm + - tarball + ispr: + - ${{github.event_name == 'pull_request'}} + fail-fast: false + steps: + - uses: actions/checkout@v4 + name: Check out code + with: + fetch-tags: true + fetch-depth: 1024 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: build ${{ matrix.package }} packages + run: | + sudo apt-get install -y coreutils build-essential sed git bash make + echo "Building packages" + make -f deployments/systemd/packages/Makefile ${{ matrix.package }} + - name: 'Upload Artifacts' + uses: actions/upload-artifact@v4 + with: + compression-level: 0 + name: mig-parted-${{ matrix.package }}-${{ github.run_id }} + path: ${{ github.workspace }}/dist/*