Vincy zhang patch 1 #8
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
# Copyright (C) 2024 Intel Corporation | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Code Scan | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | |
paths-ignore: | |
- "**.md" | |
workflow_dispatch: | |
# If there is a new commit, the previous jobs will be canceled | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
DOCKER_CONFIG_NAME: "commonDockerConfig" | |
REPO_NAME: "code-scan" | |
REPO_TAG: "1.0" | |
DOCKER_FILE_NAME: "code-scan" | |
CONTAINER_NAME: "code-scan" | |
WORKSPACE: ${{ github.workspace }} | |
jobs: | |
code-scan: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job_name: ["bandit", "hadolint"] | |
fail-fast: false | |
steps: | |
- name: Checkout out Repo | |
uses: actions/checkout@v4 | |
- name: Check Dangerous Command Injection | |
run: | | |
echo "github ref is ${{ github.ref }}" | |
echo "github ref name is ${{ github.ref_name }}" | |
echo "github head ref is ${{ github.head_ref }}" | |
echo "github base ref is ${{ github.base_ref }}" | |
echo "github merge ref is refs/pull/${{ github.event.number }}/merge" | |
git fetch origin main | |
git branch | |
git diff FETCH_HEAD --name-status | |
cd ${{ github.workspace }} && bash -x .github/workflows/scripts/check_cmd_injection.sh | |
- name: Docker Build | |
run: | | |
docker build -f ${{ github.workspace }}/.github/workflows/docker/${{ env.DOCKER_FILE_NAME }}.dockerfile -t ${{ env.REPO_NAME }}:${{ env.REPO_TAG }} . | |
- name: Docker Run | |
run: | | |
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | |
docker stop ${{ env.CONTAINER_NAME }} | |
docker rm -vf ${{ env.CONTAINER_NAME }} || true | |
fi | |
docker run -dit --memory="4g" --memory-reservation="1g" --disable-content-trust --privileged --name=${{ env.CONTAINER_NAME }} --shm-size="1g" \ | |
-v ${{ github.workspace }}:/GenAIExamples \ | |
${{ env.REPO_NAME }}:${{ env.REPO_TAG }} | |
- name: Code scan check | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "bash /GenAIExamples/.github/workflows/scripts/codeScan/${{ matrix.job_name }}.sh" | |
- name: Publish pipeline artifact | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.job_name }} | |
path: ${{ github.workspace }}/.github/workflows/scripts/codeScan/${{ matrix.job_name }}.* |