-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): updated golinter action to v1.46.1
Signed-off-by: Frederico Araujo <[email protected]>
- Loading branch information
Showing
1 changed file
with
54 additions
and
55 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- master | ||
- dev | ||
tags: | ||
- '*' | ||
- '*' | ||
pull_request: | ||
branches: | ||
- master | ||
|
@@ -20,7 +20,7 @@ on: | |
- unlocked | ||
- review_requested | ||
workflow_dispatch: | ||
|
||
env: | ||
DOCKER_REGISTRY_REPOSITORY: sysflowtelemetry/sf-processor | ||
PLUGIN_BUILDER_DOCKER_REGISTRY_REPOSITORY: sysflowtelemetry/plugin-builder | ||
|
@@ -34,47 +34,47 @@ jobs: | |
uses: actions/checkout@v2 | ||
- name: Lint core module | ||
uses: golangci/golangci-lint-action@v2 | ||
with: | ||
version: v1.42.1 | ||
with: | ||
version: v1.46.1 | ||
working-directory: core | ||
args: --disable=errcheck | ||
lint-driver: | ||
args: --disable=errcheck | ||
lint-driver: | ||
needs: lint-core | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2 | ||
- name: Lint driver module | ||
uses: golangci/golangci-lint-action@v2 | ||
with: | ||
version: v1.42.1 | ||
with: | ||
version: v1.46.1 | ||
working-directory: driver | ||
args: --disable=errcheck | ||
args: --disable=errcheck | ||
docker: | ||
needs: lint-driver | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Read manifest | ||
shell: bash | ||
run: | | ||
echo "UBI_VERSION=$(awk -F'=' '/UBI_VERSION/{print $2}' makefile.manifest.inc)" >> $GITHUB_ENV | ||
uses: actions/checkout@v2 | ||
- name: Read manifest | ||
shell: bash | ||
run: | | ||
echo "UBI_VERSION=$(awk -F'=' '/UBI_VERSION/{print $2}' makefile.manifest.inc)" >> $GITHUB_ENV | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v3 | ||
with: | ||
with: | ||
images: | | ||
${{ env.DOCKER_REGISTRY_REPOSITORY }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
tags: | | ||
type=edge,branch=master | ||
type=ref,event=branch | ||
type=ref,event=tag | ||
type=ref,event=pr | ||
type=ref,event=tag | ||
type=ref,event=pr | ||
labels: | | ||
org.opencontainers.image.documentation=https://sysflow.readthedocs.io/ | ||
org.opencontainers.image.vendor=SysFlow | ||
|
@@ -83,49 +83,49 @@ jobs: | |
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
uses: docker/login-action@v1 | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
uses: docker/login-action@v1 | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set build args | ||
id: args | ||
shell: bash | ||
run: | | ||
echo "##[set-output name=ubi_version;]$(awk -F'=' '/UBI_VERSION/{print $2}' makefile.manifest.inc)" | ||
echo "##[set-output name=branch;]$(echo ${GITHUB_REF##refs/*/})" | ||
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
- name: Build and push plugin builder image | ||
id: docker_plugin_builder | ||
uses: docker/build-push-action@v2 | ||
id: docker_plugin_builder | ||
uses: docker/build-push-action@v2 | ||
with: | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: | | ||
${{ env.PLUGIN_BUILDER_DOCKER_REGISTRY_REPOSITORY }}:${{ steps.args.outputs.branch }} | ||
ghcr.io/${{ env.GH_ORGANIZATION }}/plugin-builder:${{ steps.args.outputs.branch }} | ||
target: base | ||
ghcr.io/${{ env.GH_ORGANIZATION }}/plugin-builder:${{ steps.args.outputs.branch }} | ||
target: base | ||
labels: "${{ steps.meta.outputs.labels }}" | ||
build-args: | | ||
build-args: | | ||
BUILD_NUMBER=${{ steps.args.outputs.sha_short }} | ||
VERSION=${{ steps.args.outputs.branch }} | ||
RELEASE=${{ steps.args.outputs.sha_short }} | ||
UBI_VER=${{ steps.args.outputs.ubi_version }} | ||
UBI_VER=${{ steps.args.outputs.ubi_version }} | ||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: "${{ steps.meta.outputs.tags }}" | ||
labels: "${{ steps.meta.outputs.labels }}" | ||
cache-from: type=registry,ref=ghcr.io/${{ env.GH_ORGANIZATION }}/plugin-builder:${{ steps.args.outputs.branch }} | ||
build-args: | | ||
build-args: | | ||
BUILD_NUMBER=${{ steps.args.outputs.sha_short }} | ||
VERSION=${{ steps.args.outputs.branch }} | ||
RELEASE=${{ steps.args.outputs.sha_short }} | ||
|
@@ -138,55 +138,54 @@ jobs: | |
DOCKER_PASS: ${{ secrets.DOCKERHUB_TOKEN }} | ||
with: | ||
destination_container_repo: ${{ env.DOCKER_REGISTRY_REPOSITORY }} | ||
provider: dockerhub | ||
readme_file: "README.md" | ||
provider: dockerhub | ||
readme_file: "README.md" | ||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} | ||
release: | ||
needs: docker | ||
release: | ||
needs: docker | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.16.x' | ||
cmake-version: '3.16.x' | ||
- name: Get version from tag | ||
id: tag_name | ||
shell: bash | ||
run: | | ||
GHREF=${GITHUB_REF#refs/tags/}; echo ::set-output name=current_version::${GHREF%-*} | ||
echo ::set-output name=current_tag::${GITHUB_REF#refs/tags/} | ||
run: | | ||
GHREF=${GITHUB_REF#refs/tags/}; echo ::set-output name=current_version::${GHREF%-*} | ||
echo ::set-output name=current_tag::${GITHUB_REF#refs/tags/} | ||
- name: Build Release Assets | ||
id: build_release_assets | ||
shell: bash | ||
run: | | ||
docker pull ${{ env.DOCKER_REGISTRY_REPOSITORY }}:${{ steps.tag_name.outputs.current_tag }} | ||
make package | ||
echo "##[set-output name=deb;] $(ls ${{ github.workspace }}/scripts/cpack/*.deb)" | ||
echo "##[set-output name=rpm;] $(ls ${{ github.workspace }}/scripts/cpack/*.rpm)" | ||
echo "##[set-output name=targz;] $(ls ${{ github.workspace }}/scripts/cpack/*.tar.gz)" | ||
echo "##[set-output name=deb;] $(ls ${{ github.workspace }}/scripts/cpack/*.deb)" | ||
echo "##[set-output name=rpm;] $(ls ${{ github.workspace }}/scripts/cpack/*.rpm)" | ||
echo "##[set-output name=targz;] $(ls ${{ github.workspace }}/scripts/cpack/*.tar.gz)" | ||
- name: Get Changelog Entry | ||
id: changelog_reader | ||
uses: mindsers/changelog-reader-action@v2 | ||
with: | ||
with: | ||
version: ${{ steps.tag_name.outputs.current_version }} | ||
path: ./CHANGELOG.md | ||
path: ./CHANGELOG.md | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
body: ${{ steps.changelog_reader.outputs.changes }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
body: ${{ steps.changelog_reader.outputs.changes }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
prerelease: contains(steps.tag_name.outputs.current_version, '-rc') | ||
draft: true | ||
files: | | ||
${{ steps.build_release_assets.outputs.deb }} | ||
${{ steps.build_release_assets.outputs.rpm }} | ||
${{ steps.build_release_assets.outputs.targz }} | ||