Skip to content

Check that CRDs are up to date #156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ concurrency:
jobs:

vars:
name: Get variables
name: Checks and variables
runs-on: ubuntu-20.04
outputs:
sha: ${{ steps.vars.outputs.sha }}
go_version: ${{ steps.vars.outputs.go_version }}
git_tag: ${{ steps.vars.outputs.git_tag }}
version: ${{ steps.vars.outputs.version }}
date: ${{ steps.vars.outputs.date }}
steps:
Expand All @@ -44,10 +42,15 @@ jobs:
id: vars
run: |
echo "::set-output name=sha::$(echo ${GITHUB_SHA} | cut -c1-7)"
echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)"
echo "::set-output name=git_tag::$(echo ${GITHUB_REF/refs\/tags\//} | tr -d v)"
echo "::set-output name=version::$(grep "VERSION = " Makefile | cut -d " " -f 3)"
echo "::set-output name=date::$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
- name: Setup Golang Environment
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Check if CRDs changed
run: |
make update-crds && git diff --name-only --exit-code deploy/manifests/crds/*

unit-tests:
name: Unit Tests
Expand All @@ -59,7 +62,7 @@ jobs:
- name: Setup Golang Environment
uses: actions/setup-go@v3
with:
go-version: ${{ needs.vars.outputs.go_version }}
go-version-file: go.mod
- name: Run Tests
run: make unit-test
- name: Upload Coverage Report
Expand All @@ -72,6 +75,7 @@ jobs:
njs-unit-tests:
name: NJS Unit Tests
runs-on: ubuntu-20.04
needs: vars
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -92,7 +96,7 @@ jobs:
- name: Setup Golang Environment
uses: actions/setup-go@v3
with:
go-version: ${{ needs.vars.outputs.go_version }}
go-version-file: go.mod
- name: Build Binary
run: make build
- name: Cache Artifacts
Expand Down