Skip to content

Use centos:7 vault repos for builds #39

Use centos:7 vault repos for builds

Use centos:7 vault repos for builds #39

Workflow file for this run

# 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:
- ubuntu18.04-arm64
- ubuntu18.04-amd64
- ubuntu18.04-ppc64le
- centos7-aarch64
- centos7-x86_64
- centos8-ppc64le
ispr:
- ${{github.event_name == 'pull_request'}}
exclude:
- ispr: true
package: ubuntu18.04-arm64
- ispr: true
package: ubuntu18.04-ppc64le
- ispr: true
package: centos7-aarch64
- ispr: true
package: centos8-ppc64le
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 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/*