mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 20:52:12 -05:00
Remove old workflows
Signed-off-by: Brett Logan <lindluni@github.com>
This commit is contained in:
parent
bb2b8ec6f4
commit
489b843118
2 changed files with 0 additions and 383 deletions
233
.github/workflows/deploy-production.yml
vendored
233
.github/workflows/deploy-production.yml
vendored
|
@ -1,233 +0,0 @@
|
||||||
---
|
|
||||||
name: Build, test, and eventually deploy super-linter container images
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build, test, and eventually push the container image
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
deployments: write
|
|
||||||
issues: write
|
|
||||||
packages: write
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
images:
|
|
||||||
- container-build-target: final_slim
|
|
||||||
container-image-id-prefix: slim-
|
|
||||||
deployment-environment-identifier: Production-SLIM
|
|
||||||
image-id: slim
|
|
||||||
- container-build-target: final_standard
|
|
||||||
container-image-id-prefix: ""
|
|
||||||
deployment-environment-identifier: Production
|
|
||||||
image-id: standard
|
|
||||||
timeout-minutes: 60
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
# Full git history is needed to get a proper list
|
|
||||||
# of changed files within `super-linter`
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Get current date and make it available as an environment variable
|
|
||||||
run: |
|
|
||||||
echo "Appending the build date contents to GITHUB_ENV..."
|
|
||||||
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}"
|
|
||||||
|
|
||||||
- name: Setup Docker BuildX
|
|
||||||
uses: docker/setup-buildx-action@v2.2.1
|
|
||||||
|
|
||||||
- name: Build Docker image - ${{ matrix.images.image-id }}
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
uses: docker/build-push-action@v3.1.1
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: ./Dockerfile
|
|
||||||
build-args: |
|
|
||||||
BUILD_DATE=${{ env.BUILD_DATE }}
|
|
||||||
BUILD_REVISION=${{ github.sha }}
|
|
||||||
BUILD_VERSION=${{ github.sha }}
|
|
||||||
load: true
|
|
||||||
push: false
|
|
||||||
secrets: |
|
|
||||||
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
|
||||||
tags: |
|
|
||||||
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ github.sha }}
|
|
||||||
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}test
|
|
||||||
target: "${{ matrix.images.container-build-target }}"
|
|
||||||
|
|
||||||
- name: Run container image label test cases
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: .automation/validate-docker-labels.sh "${{ matrix.images.image-id }}"
|
|
||||||
|
|
||||||
- name: Edit an action.yml file for test local build
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
run: |
|
|
||||||
sed -i "s/super-linter:.*/super-linter:${{ matrix.images.container-image-id-prefix }}${GITHUB_SHA}'/g" action.yml
|
|
||||||
|
|
||||||
- name: Gather information about the runtime environment
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
make info
|
|
||||||
|
|
||||||
############################################################
|
|
||||||
# Test the built image in the actions context. #
|
|
||||||
# Not the container directly, and not using RUN_LOCAL=true #
|
|
||||||
############################################################
|
|
||||||
- name: Test the local action
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
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
|
|
||||||
|
|
||||||
# Workaround for https://github.com/actions/runner/issues/434
|
|
||||||
- name: Fix file and directory ownership
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
sudo chown -R "$(id -u)":"$(id -g)" "$(pwd)"
|
|
||||||
|
|
||||||
- name: Run the test suite
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
make IMAGE=${{ matrix.images.image-id }} test
|
|
||||||
|
|
||||||
- name: Upload the code coverage report
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
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
|
|
||||||
|
|
||||||
- name: Run test cases - ${{ matrix.images.image-id }}
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
docker run \
|
|
||||||
-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:${{ matrix.images.container-image-id-prefix }}${GITHUB_SHA}"
|
|
||||||
|
|
||||||
- name: Clean the working directory for additional testing
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: .automation/clean-code-base-for-tests.sh
|
|
||||||
|
|
||||||
- name: Run against all code base - ${{ matrix.images.image-id }}
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
docker run \
|
|
||||||
-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:${{ matrix.images.container-image-id-prefix }}${GITHUB_SHA}"
|
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
|
||||||
uses: docker/login-action@v2.0.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
|
||||||
uses: docker/login-action@v2.0.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Start the deployment for the ${{ matrix.images.deployment-environment-identifier }} environment
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
|
||||||
uses: bobheadxi/deployments@v1.3.0
|
|
||||||
id: deployment
|
|
||||||
with:
|
|
||||||
step: start
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
env: ${{ matrix.images.deployment-environment-identifier }}
|
|
||||||
|
|
||||||
- name: Build the container image and push it - ${{ matrix.images.image-id }}
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
|
||||||
uses: docker/build-push-action@v3.1.1
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: ./Dockerfile
|
|
||||||
build-args: |
|
|
||||||
BUILD_DATE=${{ env.BUILD_DATE }}
|
|
||||||
BUILD_REVISION=${{ github.sha }}
|
|
||||||
BUILD_VERSION=${{ github.sha }}
|
|
||||||
load: false
|
|
||||||
push: true
|
|
||||||
secrets: |
|
|
||||||
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
|
||||||
tags: |
|
|
||||||
github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
|
|
||||||
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
|
|
||||||
target: "${{ matrix.images.container-build-target }}"
|
|
||||||
|
|
||||||
- name: Update the deployment status for the ${{ matrix.images.deployment-environment-identifier }} environment
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }}
|
|
||||||
uses: bobheadxi/deployments@v1.3.0
|
|
||||||
with:
|
|
||||||
step: finish
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
status: ${{ job.status }}
|
|
||||||
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
|
||||||
env: ${{ steps.deployment.outputs.env }}
|
|
||||||
env_url: https://github.com/github/super-linter
|
|
||||||
|
|
||||||
- name: Create a GitHub issue on failure
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' && failure() }}
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
id: create-issue
|
|
||||||
with:
|
|
||||||
# https://octokit.github.io/rest.js/v18#issues-create
|
|
||||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
script: |
|
|
||||||
const create = await github.rest.issues.create({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
title: "Failed to deploy to production",
|
|
||||||
body: "Automation has failed us!\nMore information can be found at:\n - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
|
||||||
})
|
|
||||||
console.log('create', create)
|
|
||||||
return create.data.number
|
|
||||||
|
|
||||||
- name: Assign admins to the issue created on failure
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' && failure() }}
|
|
||||||
with:
|
|
||||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
script: |
|
|
||||||
github.rest.issues.addAssignees({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
issue_number: "${{ steps.create-issue.outputs.result }}",
|
|
||||||
assignees: [
|
|
||||||
'lindluni'
|
|
||||||
]
|
|
||||||
})
|
|
150
.github/workflows/deploy-release.yml
vendored
150
.github/workflows/deploy-release.yml
vendored
|
@ -1,150 +0,0 @@
|
||||||
---
|
|
||||||
name: Deploy super-linter release container images
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
release_version:
|
|
||||||
description: 'version to release. Ex: v4.3.2'
|
|
||||||
required: true
|
|
||||||
default: 'v'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Deploy container image - Release
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
images:
|
|
||||||
- container-image-id-prefix: slim-
|
|
||||||
deployment-environment-identifier: Release-SLIM
|
|
||||||
- container-image-id-prefix: ""
|
|
||||||
deployment-environment-identifier: Release
|
|
||||||
timeout-minutes: 60
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Setup Docker BuildX
|
|
||||||
uses: docker/setup-buildx-action@v2.2.1
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2.0.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2.0.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Get current release identifier
|
|
||||||
# shellcheck disable=SC2062
|
|
||||||
run: |
|
|
||||||
RELEASE_VERSION="${{ github.event.release.name }}"
|
|
||||||
|
|
||||||
if [ -z "${RELEASE_VERSION}" ]; then
|
|
||||||
echo "No release version found in environment, using input..."
|
|
||||||
RELEASE_VERSION="${{ github.event.inputs.release_version }}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check the RELEASE_VERSION again
|
|
||||||
if [ -z "${RELEASE_VERSION}" ]; then
|
|
||||||
echo "Error RELEASE_VERSION is empty. Exiting..."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! echo "${RELEASE_VERSION}" | grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+"; then
|
|
||||||
echo "Error: RELEASE_VERSION doesn't look like a semantic version: ${RELEASE_VERSION}"
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
{
|
|
||||||
echo "RELEASE_VERSION=${RELEASE_VERSION}"
|
|
||||||
echo "SEMVER_VERSION=${RELEASE_VERSION#v}"
|
|
||||||
echo "SEMVER_MAJOR_VERSION=${SEMVER_VERSION%%.*}"
|
|
||||||
echo "SEMVER_MAJOR_VERSION_WITH_PREFIX=v${SEMVER_MAJOR_VERSION}"
|
|
||||||
} >> "${GITHUB_ENV}"
|
|
||||||
|
|
||||||
- name: Start deployment for the ${{ matrix.images.deployment-environment-identifier }} environment
|
|
||||||
uses: bobheadxi/deployments@v1.3.0
|
|
||||||
id: deployment
|
|
||||||
with:
|
|
||||||
step: start
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
env: ${{ matrix.images.deployment-environment-identifier }}
|
|
||||||
|
|
||||||
# We don't rebuild the image to avoid that the latest tag and the release tags don't point to what the release tag is pointing to.
|
|
||||||
# Instead, we pull the latest image and tag it.
|
|
||||||
- name: Add release tags and push image
|
|
||||||
uses: akhilerm/tag-push-action@v2.1.0
|
|
||||||
with:
|
|
||||||
src: ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
|
|
||||||
dst: |
|
|
||||||
github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
|
|
||||||
github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
|
|
||||||
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
|
|
||||||
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
|
|
||||||
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
# Full git history is needed to get a proper list of commits and tags
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
# We use ^{} to recursively deference the tag to get the commit the tag is pointing at.
|
|
||||||
# Then, we use that reference to create new tags, so that the new tags point to the commit
|
|
||||||
# the original tag was pointing to, and not to the original tag.
|
|
||||||
# This notation is documented at https://git-scm.com/docs/gitrevisions#Documentation/gitrevisions.txt-emltrevgtemegemv0998em
|
|
||||||
- name: Update the major version and latest tags
|
|
||||||
run: |
|
|
||||||
git tag --force "${SEMVER_MAJOR_VERSION_WITH_PREFIX}" "${RELEASE_VERSION}^{}"
|
|
||||||
git tag --force latest "${RELEASE_VERSION}^{}"
|
|
||||||
git push --force origin "refs/tags/${SEMVER_MAJOR_VERSION_WITH_PREFIX}" "refs/tags/latest"
|
|
||||||
|
|
||||||
- name: Update the deployment status for the ${{ matrix.images.deployment-environment-identifier }} environment
|
|
||||||
uses: bobheadxi/deployments@v1.3.0
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
step: finish
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
status: ${{ job.status }}
|
|
||||||
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
|
||||||
env: ${{ steps.deployment.outputs.env }}
|
|
||||||
env_url: https://github.com/github/super-linter/releases/tag/${{ env.RELEASE_VERSION }}
|
|
||||||
|
|
||||||
- name: Create a GitHub issue on failure
|
|
||||||
if: failure()
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
id: create-issue
|
|
||||||
with:
|
|
||||||
# https://octokit.github.io/rest.js/v18#issues-create
|
|
||||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
script: |
|
|
||||||
const create = await github.rest.issues.create({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
title: "Failed to deploy release to production",
|
|
||||||
body: "Automation has failed us! Failed to push release ${{ env.RELEASE_VERSION }}\nMore information can be found at:\n - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
|
||||||
})
|
|
||||||
console.log('create', create)
|
|
||||||
return create.data.number
|
|
||||||
|
|
||||||
- name: Assign admins to the issue created on failure
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
if: failure()
|
|
||||||
with:
|
|
||||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
script: |
|
|
||||||
github.rest.issues.addAssignees({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
issue_number: "${{ steps.create-issue.outputs.result }}",
|
|
||||||
assignees: [
|
|
||||||
'lindluni'
|
|
||||||
]
|
|
||||||
})
|
|
Loading…
Reference in a new issue