upgrade to latest dependencies (#2068) #1218
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
name: CI | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
check: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- name: Lint | |
run: make check && make check-templates | |
- name: Check that 'func.yaml schema' is up-to-date | |
run: make schema-check | |
- name: Check embedded templates content | |
run: go test -run "^\QTestFileSystems\E$/^\Qembedded\E$" ./pkg/filesystem | |
test-unit: | |
strategy: | |
matrix: | |
java: [ 17 ] | |
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Unit Test | |
run: make test | |
- name: Template Unit Tests | |
run: make test-templates | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: unit-tests-${{ matrix.os }} | |
test-integration: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- name: Install Binaries | |
run: ./hack/binaries.sh | |
- name: Allocate Cluster | |
run: ./hack/allocate.sh | |
- name: Local Registry | |
run: ./hack/registry.sh | |
- name: Integration Tests | |
run: make test-integration | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: integration-tests | |
e2e-test: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- name: Install Binaries | |
run: ./hack/binaries.sh | |
- name: Allocate Cluster | |
run: ./hack/allocate.sh | |
- name: Local Registry | |
run: ./hack/registry.sh | |
- name: E2E Test | |
run: make test-e2e | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: e2e-test | |
e2e-on-cluster-test: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- uses: imjasonh/setup-ko@v0.6 | |
- name: Install Binaries | |
run: ./hack/binaries.sh | |
- name: Allocate Cluster | |
run: ./hack/allocate.sh | |
- name: Setup testing images | |
run: ./hack/setup-testing-images.sh | |
- name: Deploy Tekton | |
run: ./hack/tekton.sh | |
- name: Deploy Test Git Server | |
run: ./test/gitserver.sh | |
- name: E2E On Cluster Test | |
env: | |
E2E_RUNTIMES: "" | |
run: make test-e2e-on-cluster | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: e2e-test-oncluster | |
build: | |
needs: [check, test-unit, test-integration, e2e-test, e2e-on-cluster-test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
# Standard build tasks | |
- name: Build | |
run: make cross-platform | |
# Upload all build artifacts | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: OSX Binary (AMD) | |
path: func_darwin_amd64 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: OSX Binary (ARM) | |
path: func_darwin_arm64 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Linux Binary (AMD) | |
path: func_linux_amd64 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Linux Binary (ARM) | |
path: func_linux_arm64 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Linux Binary (PPC64LE) | |
path: func_linux_ppc64le | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Linux Binary (S390X) | |
path: func_linux_s390x | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Windows Binary | |
path: func_windows_amd64.exe | |
publish-image: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/composite/go-setup | |
- uses: imjasonh/setup-ko@v0.6 | |
- run: ko build --platform=linux/ppc64le,linux/s390x,linux/amd64,linux/arm64 -B ./cmd/func |