2022-12-23 19:34:59 -05:00
|
|
|
name: Build and Test
|
2022-12-23 15:54:37 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-12-23 19:34:59 -05:00
|
|
|
test:
|
|
|
|
name: Build and Test
|
2022-12-23 15:54:37 -05:00
|
|
|
runs-on: ubuntu-20.04-8core-sl
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
images:
|
|
|
|
- container-build-target: final_slim
|
2022-12-23 16:06:03 -05:00
|
|
|
image-id-prefix: slim-
|
2022-12-23 15:54:37 -05:00
|
|
|
deployment-environment-identifier: Production-SLIM
|
|
|
|
image-id: slim
|
|
|
|
- container-build-target: final_standard
|
2022-12-23 16:06:03 -05:00
|
|
|
image-id-prefix: ""
|
2022-12-23 15:54:37 -05:00
|
|
|
deployment-environment-identifier: Production
|
|
|
|
image-id: standard
|
|
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-12-23 16:21:10 -05:00
|
|
|
- name: Update action.yml
|
2022-12-23 16:37:21 -05:00
|
|
|
run: yq '.runs.image = "docker://ghcr.io/github/super-linter:${{ matrix.images.image-id }}"' -i action.yml
|
2022-12-23 15:54:37 -05:00
|
|
|
- name: Retrieve Datetime
|
|
|
|
run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}"
|
2022-12-23 16:21:10 -05:00
|
|
|
- name: Build Docker Image
|
2022-12-23 15:54:37 -05:00
|
|
|
run: |
|
2022-12-23 16:03:51 -05:00
|
|
|
docker build --build-arg "BUILD_DATE=${date}" \
|
|
|
|
--build-arg "BUILD_DATE=${revision}" \
|
|
|
|
--build-arg "BUILD_VERSION=${version}" \
|
|
|
|
--target "${target}" \
|
|
|
|
--tag "ghcr.io/github/super-linter:${tag}" .
|
2022-12-23 15:54:37 -05:00
|
|
|
env:
|
|
|
|
date: ${{ env.BUILD_DATE }}
|
|
|
|
revision: ${{ github.sha }}
|
2022-12-23 16:06:03 -05:00
|
|
|
tag: ${{ matrix.images.image-id }}
|
2022-12-23 15:54:37 -05:00
|
|
|
target: ${{ matrix.images.container-build-target }}
|
|
|
|
version: ${{ github.sha }}
|
2022-12-23 19:42:53 -05:00
|
|
|
- name: Test Local Action
|
2022-12-23 15:54:37 -05:00
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
ACTIONS_RUNNER_DEBUG: true
|
|
|
|
ERROR_ON_MISSING_EXEC_BIT: true
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
DEFAULT_BRANCH: main
|
|
|
|
LOCAL_UPDATES: true
|
|
|
|
- name: Run Test Suite
|
|
|
|
run: make IMAGE=${{ matrix.images.image-id }} test
|
2022-12-23 19:39:21 -05:00
|
|
|
- name: Upload the code coverage report
|
|
|
|
uses: codacy/codacy-coverage-reporter-action@v1.1
|
|
|
|
# Sometimes this fails when user does not have permissions to secrets
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
|
|
|
coverage-reports: test/reports/cobertura/runTests.sh/cobertura.xml
|
2022-12-23 15:54:37 -05:00
|
|
|
- name: Run Super-Linter Tests
|
|
|
|
run: |
|
|
|
|
docker run \
|
2022-12-23 16:03:51 -05:00
|
|
|
-e RUN_LOCAL=true \
|
|
|
|
-e TEST_CASE_RUN=true \
|
|
|
|
-e ANSIBLE_DIRECTORY=.automation/test/ansible \
|
|
|
|
-e ACTIONS_RUNNER_DEBUG=true \
|
|
|
|
-e ERROR_ON_MISSING_EXEC_BIT=true \
|
|
|
|
-v "${GITHUB_WORKSPACE}:/tmp/lint" \
|
|
|
|
"ghcr.io/github/super-linter:${tag}"
|
2022-12-23 15:54:37 -05:00
|
|
|
env:
|
2022-12-23 16:06:03 -05:00
|
|
|
tag: ${{ matrix.images.image-id }}
|
2022-12-23 18:49:32 -05:00
|
|
|
- name: Lint Codebase
|
2022-12-23 15:54:37 -05:00
|
|
|
run: |
|
2022-12-23 17:00:23 -05:00
|
|
|
docker run \
|
2022-12-23 16:03:51 -05:00
|
|
|
-e RUN_LOCAL=true \
|
|
|
|
-e OUTPUT_DETAILS=detailed \
|
|
|
|
-e ACTIONS_RUNNER_DEBUG=true \
|
|
|
|
-e ERROR_ON_MISSING_EXEC_BIT=true \
|
|
|
|
-v "${GITHUB_WORKSPACE}:/tmp/lint" \
|
|
|
|
"ghcr.io/github/super-linter:${tag}"
|
2022-12-23 15:54:37 -05:00
|
|
|
env:
|
2022-12-23 16:06:03 -05:00
|
|
|
tag: ${{ matrix.images.image-id }}
|