2022-12-23 19:34:59 -05:00
|
|
|
name: Build and Test
|
2022-12-23 15:54:37 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2024-01-04 16:54:47 -05:00
|
|
|
push:
|
2023-02-09 01:48:06 -05:00
|
|
|
merge_group:
|
2023-08-25 14:25:04 -04:00
|
|
|
workflow_dispatch:
|
2022-12-23 15:54:37 -05:00
|
|
|
|
2023-12-22 07:22:15 -05:00
|
|
|
# Don't grant any access by default
|
|
|
|
permissions: {}
|
|
|
|
|
2022-12-23 15:54:37 -05:00
|
|
|
jobs:
|
2022-12-23 19:34:59 -05:00
|
|
|
test:
|
|
|
|
name: Build and Test
|
2023-10-14 22:04:51 -04:00
|
|
|
runs-on: ubuntu-latest
|
2022-12-23 15:54:37 -05:00
|
|
|
permissions:
|
2024-05-08 03:52:30 -04:00
|
|
|
contents: read
|
2023-01-04 01:24:12 -05:00
|
|
|
concurrency:
|
2024-01-10 04:05:41 -05:00
|
|
|
# Ref: https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
|
|
|
|
# github.head_ref: head_ref or source branch of the pull request
|
|
|
|
# github.ref: ref of the branch that triggered the workflow
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event_name }}-${{ matrix.images.target }}
|
2023-01-04 01:24:12 -05:00
|
|
|
cancel-in-progress: true
|
2022-12-23 15:54:37 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
images:
|
2023-10-19 17:03:14 -04:00
|
|
|
- prefix: slim-
|
|
|
|
target: slim
|
|
|
|
- prefix: ""
|
|
|
|
target: standard
|
2022-12-23 15:54:37 -05:00
|
|
|
timeout-minutes: 60
|
2023-10-19 17:03:14 -04:00
|
|
|
env:
|
|
|
|
CONTAINER_IMAGE_ID: "ghcr.io/super-linter/super-linter:${{ matrix.images.prefix }}latest"
|
|
|
|
CONTAINER_IMAGE_TARGET: "${{ matrix.images.target }}"
|
2024-02-20 12:36:35 -05:00
|
|
|
CONTAINER_IMAGE_OUTPUT_IMAGE_NAME: "super-linter-${{ matrix.images.prefix }}latest"
|
2022-12-23 15:54:37 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
2023-09-11 19:17:22 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-12-23 15:54:37 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-12-23 20:25:04 -05:00
|
|
|
|
2022-12-23 16:21:10 -05:00
|
|
|
- name: Update action.yml
|
2023-10-19 17:03:14 -04:00
|
|
|
run: |
|
|
|
|
echo "yq version: $(yq --version)"
|
|
|
|
yq '.runs.image = env(CONTAINER_IMAGE_ID)' -i action.yml
|
|
|
|
echo "Action file contents:"
|
|
|
|
cat action.yml
|
2022-12-23 20:25:04 -05:00
|
|
|
|
2023-12-07 09:18:47 -05:00
|
|
|
- name: Set build metadata
|
|
|
|
run: |
|
|
|
|
if [[ ${{ github.event_name }} == 'push' ]] || [[ ${{ github.event_name }} == 'merge_group' ]]; then
|
|
|
|
BUILD_REVISION=${{ github.sha }}
|
|
|
|
BUILD_VERSION=${{ github.sha }}
|
|
|
|
elif [[ ${{ github.event_name }} == 'pull_request' ]]; then
|
|
|
|
BUILD_REVISION=${{ github.event.pull_request.head.sha }}
|
|
|
|
BUILD_VERSION=${{ github.event.pull_request.head.sha }}
|
|
|
|
else
|
|
|
|
echo "[ERROR] Event not supported when setting build revision and build version"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${BUILD_REVISION}" ]; then
|
|
|
|
echo "[ERROR] BUILD_REVISION is empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${BUILD_VERSION}" ]; then
|
|
|
|
echo "[ERROR] BUILD_VERSION is empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
|
|
|
echo "BUILD_REVISION=${BUILD_REVISION}"
|
|
|
|
echo "BUILD_VERSION=${BUILD_VERSION}"
|
|
|
|
} >> "${GITHUB_ENV}"
|
|
|
|
|
|
|
|
- name: Free Disk space
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-04-05 08:12:35 -04:00
|
|
|
sudo rm -rf /usr/local/lib/android || true
|
|
|
|
sudo rm -rf /usr/share/dotnet || true
|
|
|
|
sudo rm -rf /opt/ghc || true
|
|
|
|
sudo rm -rf /usr/local/.ghcup || true
|
2023-12-07 09:18:47 -05:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-12-23 20:25:04 -05:00
|
|
|
|
|
|
|
- name: Build Image
|
2023-09-18 15:01:58 -04:00
|
|
|
uses: docker/build-push-action@v5
|
2022-12-23 20:25:04 -05:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
build-args: |
|
|
|
|
BUILD_DATE=${{ env.BUILD_DATE }}
|
2023-12-07 09:18:47 -05:00
|
|
|
BUILD_REVISION=${{ env.BUILD_REVISION }}
|
|
|
|
BUILD_VERSION=${{ env.BUILD_VERSION }}
|
2023-12-20 09:55:53 -05:00
|
|
|
cache-from: type=registry,ref=${{ env.CONTAINER_IMAGE_ID }}-buildcache
|
2024-02-20 12:36:35 -05:00
|
|
|
outputs: type=docker,dest=/tmp/${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}.tar
|
2022-12-23 20:25:04 -05:00
|
|
|
push: false
|
2023-01-04 22:43:51 -05:00
|
|
|
secrets: |
|
|
|
|
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
2023-10-19 17:03:14 -04:00
|
|
|
tags: |
|
|
|
|
${{ env.CONTAINER_IMAGE_ID }}
|
2022-12-23 20:25:04 -05:00
|
|
|
target: "${{ matrix.images.target }}"
|
|
|
|
|
2024-02-20 12:36:35 -05:00
|
|
|
# Load the image here because the docker/build-push-action doesn't support multiple exporters yet
|
|
|
|
# Ref: https://github.com/docker/build-push-action/issues/413
|
|
|
|
# Ref: https://github.com/moby/buildkit/issues/1555
|
|
|
|
- name: Load image
|
|
|
|
run: |
|
|
|
|
docker load <"/tmp/${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}.tar"
|
|
|
|
|
2024-02-05 12:24:07 -05:00
|
|
|
- name: Test Local Action (debug log)
|
2022-12-23 15:54:37 -05:00
|
|
|
uses: ./
|
|
|
|
env:
|
2024-02-20 12:27:06 -05:00
|
|
|
LOG_LEVEL: DEBUG
|
2023-12-05 03:04:13 -05:00
|
|
|
CREATE_LOG_FILE: true
|
2022-12-23 15:54:37 -05:00
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-01-30 14:24:55 -05:00
|
|
|
GITLEAKS_CONFIG_FILE: .gitleaks-ignore-tests.toml
|
2024-01-31 05:26:01 -05:00
|
|
|
FILTER_REGEX_EXCLUDE: ".*(/test/linters/|CHANGELOG.md).*"
|
2023-09-29 16:25:37 -04:00
|
|
|
RENOVATE_SHAREABLE_CONFIG_PRESET_FILE_NAMES: "default.json,hoge.json"
|
2023-12-02 03:35:41 -05:00
|
|
|
TYPESCRIPT_STANDARD_TSCONFIG_FILE: ".github/linters/tsconfig.json"
|
2022-12-23 20:25:04 -05:00
|
|
|
|
2023-12-05 03:04:13 -05:00
|
|
|
- name: Get the contents of the log file
|
|
|
|
run: |
|
|
|
|
sudo cat super-linter.log
|
|
|
|
sudo rm -v super-linter.log
|
|
|
|
|
2024-02-05 12:24:07 -05:00
|
|
|
- name: Test Local Action (default log)
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITLEAKS_CONFIG_FILE: .gitleaks-ignore-tests.toml
|
|
|
|
FILTER_REGEX_EXCLUDE: ".*(/test/linters/|CHANGELOG.md).*"
|
|
|
|
TYPESCRIPT_STANDARD_TSCONFIG_FILE: ".github/linters/tsconfig.json"
|
|
|
|
|
2024-02-20 12:36:35 -05:00
|
|
|
# Validate the container image labels here so we don't have to pass the expected
|
|
|
|
# label values to other build jobs
|
|
|
|
- name: Validate container image labels
|
|
|
|
run: make validate-container-image-labels
|
|
|
|
|
|
|
|
- name: Upload ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }} container image
|
2024-05-02 07:45:28 -04:00
|
|
|
uses: actions/upload-artifact@v4.3.3
|
2024-02-20 12:36:35 -05:00
|
|
|
with:
|
|
|
|
name: ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}
|
|
|
|
path: /tmp/${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}.tar
|
|
|
|
|
|
|
|
build-test-suite-matrix:
|
|
|
|
name: Build test suite matrix
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: test
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
outputs:
|
|
|
|
matrix: ${{ steps.generate-matrix.outputs.test-cases }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Generate test cases matrix
|
|
|
|
id: generate-matrix
|
|
|
|
run: |
|
|
|
|
TEST_TARGETS=$(make -pRrq 2>&1 | grep 'test:' | tr -d '\n' | sed -e "s/^test: //" | jq --raw-input --slurp --compact-output 'split(" ")')
|
|
|
|
echo "TEST_TARGETS: ${TEST_TARGETS}"
|
|
|
|
echo "test-cases=${TEST_TARGETS}" >> "${GITHUB_OUTPUT}"
|
|
|
|
|
|
|
|
run-test-suite:
|
|
|
|
name: Run test cases
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
needs: build-test-suite-matrix
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
test-case: ${{ fromJson(needs.build-test-suite-matrix.outputs.matrix) }}
|
|
|
|
images:
|
|
|
|
- container-image-id: super-linter-latest
|
|
|
|
prefix: ""
|
|
|
|
target: standard
|
|
|
|
- container-image-id: super-linter-slim-latest
|
|
|
|
prefix: slim-
|
|
|
|
target: slim
|
|
|
|
exclude:
|
|
|
|
# Don't validate container image labels because we do that when building the image
|
|
|
|
- test-case: validate-container-image-labels
|
|
|
|
env:
|
|
|
|
CONTAINER_IMAGE_ID: "ghcr.io/super-linter/super-linter:${{ matrix.images.prefix }}latest"
|
|
|
|
CONTAINER_IMAGE_TARGET: "${{ matrix.images.target }}"
|
|
|
|
CONTAINER_IMAGE_OUTPUT_IMAGE_NAME: "super-linter-${{ matrix.images.prefix }}latest"
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Download ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }} container image
|
2024-05-02 07:45:14 -04:00
|
|
|
uses: actions/download-artifact@v4.1.7
|
2024-02-20 12:36:35 -05:00
|
|
|
with:
|
|
|
|
name: ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}
|
|
|
|
path: /tmp
|
|
|
|
|
|
|
|
- name: Load ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }} container image
|
|
|
|
run: |
|
|
|
|
docker load --input /tmp/${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }}.tar
|
|
|
|
docker image ls -a
|
|
|
|
|
|
|
|
- name: "Test case: ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }} - ${{ matrix.test-case }}"
|
|
|
|
run: |
|
|
|
|
echo "Running: ${{ env.CONTAINER_IMAGE_OUTPUT_IMAGE_NAME }} - ${{ matrix.test-case }}"
|
|
|
|
make ${{ matrix.test-case }}
|
2024-02-09 13:45:44 -05:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-12-21 09:03:14 -05:00
|
|
|
|
|
|
|
preview-release-notes:
|
2024-04-16 03:06:47 -04:00
|
|
|
if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name && github.repository == 'super-linter/super-linter'
|
2023-12-21 09:03:14 -05:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-22 07:22:15 -05:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2023-12-21 09:03:14 -05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Setup authentication token
|
|
|
|
run: |
|
|
|
|
echo "${{ secrets.GITHUB_TOKEN }}" > .github-personal-access-token
|
|
|
|
|
|
|
|
- name: Generate a preview of the release notes
|
|
|
|
run: |
|
|
|
|
make release-please-dry-run
|