Skip to content

Commit

Permalink
Merge pull request #236 from elezar/github-migration
Browse files Browse the repository at this point in the history
Add jobs for building packages
  • Loading branch information
elezar authored Feb 1, 2024
2 parents 53bb525 + b5e87c0 commit f4b4f0b
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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: image

on:
push:
branches:
- main
- release-*

jobs:
packages:
runs-on: ubuntu-latest
strategy:
matrix:
package:
- ubuntu18.04-arm64
- ubuntu18.04-amd64
- ubuntu18.04-ppc64le
- centos7-aarch64
- centos7-x86_64
- centos8-ppc64le
fail-fast: false
steps:
- uses: actions/checkout@v4
name: Check out code
- 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 mk/docker.mk ${{ matrix.package }}
- name: 'Upload Artifacts'
uses: actions/upload-artifact@v4
with:
compression-level: 0
name: libnvidia-container-${{ matrix.package }}-${{ github.run_id }}
path: ${{ github.workspace }}/dist/*

0 comments on commit f4b4f0b

Please sign in to comment.