This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
Update crypto to v0.17.0 #398
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: Test and publish | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- main | |
- release-* | |
jobs: | |
test: | |
name: Unit Testing with Coverage | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.21.3' | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
go mod download | |
go mod vendor | |
make bootstrap | |
- name: Run Unit tests | |
run: go test -covermode atomic -coverprofile=covprofile ./... | |
- name: Install goveralls | |
run: go install github.com/mattn/goveralls@latest | |
- name: Send coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: $(go env GOPATH)/bin/goveralls -coverprofile=covprofile -service=github -ignore='pkg/generated/*,pkg/generated/*/*,pkg/generated/*/*/*,pkg/generated/*/*/*/*,pkg/generated/*/*/*/*/*,vendor/*,vendor/*/*,vendor/*/*/*,vendor/*/*/*/*,vendor/*/*/*/*/*' | |
push_to_registry: | |
needs: [test] | |
if: success() | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
image: | |
- nodecontribution | |
- nodelabeler | |
- selectivedeployment | |
- subnamespace | |
- tenant | |
- tenantrequest | |
- rolerequest | |
- tenantresourcequota | |
- vpnpeer | |
- clusterrolerequest | |
- sliceclaim | |
- slice | |
- notifier | |
- admissioncontrol | |
- cluster | |
- clusterlabeler | |
- fedlet | |
- fedscheduler | |
- managercache | |
- selectivedeploymentanchor | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.21.3' | |
- name: Install dependencies | |
run: | | |
go mod download | |
go mod vendor | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
# See https://github.com/docker/metadata-action for the generated tags | |
- name: Docker metadata | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: edgenetio/${{ matrix.image }} | |
- name: Log in to Docker Hub | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Build and push ${{ matrix.image }} | |
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc | |
with: | |
context: . | |
file: ./build/images/${{ matrix.image }}/Dockerfile | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=registry,ref=edgenetio/${{ matrix.image }}:buildcache | |
cache-to: type=registry,ref=edgenetio/${{ matrix.image }}:buildcache,mode=max |