Updated Dockerfile-gnb to support USRP with srsGNB #20
Workflow file for this run
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
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright 2024 Intel Corporation | |
name: Master workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
hadolint-gnb: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dockerfile linter | |
uses: hadolint/[email protected] | |
# For now, ignoring: | |
# DL3008 warning: Pin versions in apt get install (e.g., apt-get install <package>=<version>); | |
# DL4006 warning: Set the SHELL option -o pipefail before RUN with a pipe in it; and | |
# SC2034 warning: SPLIT appears unused | |
with: | |
dockerfile: Dockerfile-gnb | |
ignore: DL3008,DL4006,SC2034 | |
hadolint-ue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dockerfile linter | |
uses: hadolint/[email protected] | |
# For now, ignoring: | |
# DL3008 warning: Pin versions in apt get install (e.g., apt-get install <package>=<version>) | |
with: | |
dockerfile: Dockerfile-ue | |
ignore: DL3008 |