2022-12-23 19:34:59 -05:00
|
|
|
name: Build and Test
|
2022-12-23 15:54:37 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
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:
|
|
|
|
contents: read
|
2023-01-04 01:24:12 -05:00
|
|
|
concurrency:
|
2023-01-04 01:31:04 -05:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ 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 }}"
|
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: |
|
|
|
|
sudo rm -rf /usr/local/lib/android
|
|
|
|
sudo rm -rf /usr/share/dotnet
|
|
|
|
|
|
|
|
- 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
|
2023-01-04 22:23:28 -05:00
|
|
|
load: true
|
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 }}"
|
|
|
|
|
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
|
2023-12-05 03:04:13 -05:00
|
|
|
CREATE_LOG_FILE: true
|
2022-12-23 15:54:37 -05:00
|
|
|
ERROR_ON_MISSING_EXEC_BIT: true
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
DEFAULT_BRANCH: main
|
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
|
|
|
|
|
2022-12-23 15:54:37 -05:00
|
|
|
- name: Run Test Suite
|
2023-10-19 17:03:14 -04:00
|
|
|
run: make test
|
2023-12-21 09:03:14 -05:00
|
|
|
|
|
|
|
preview-release-notes:
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
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
|