This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from qiujian16/update-deps
update deps and enable action
- Loading branch information
Showing
215 changed files
with
651 additions
and
480 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: DCO | ||
on: | ||
workflow_dispatch: {} | ||
pull_request: | ||
branches: | ||
- main | ||
- release-* | ||
|
||
jobs: | ||
dco_check: | ||
runs-on: ubuntu-latest | ||
name: DCO Check | ||
steps: | ||
- name: Get PR Commits | ||
id: 'get-pr-commits' | ||
uses: tim-actions/get-pr-commits@master | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: DCO Check | ||
uses: tim-actions/dco@master | ||
with: | ||
commits: ${{ steps.get-pr-commits.outputs.commits }} |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: GoPostSubmit | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release-* | ||
workflow_dispatch: {} | ||
|
||
env: | ||
# Common versions | ||
GO_VERSION: '1.16' | ||
GO_REQUIRED_MIN_VERSION: '' | ||
GOPATH: '/home/runner/work/registration/registration/go' | ||
defaults: | ||
run: | ||
working-directory: go/src/open-cluster-management.io/registration | ||
|
||
jobs: | ||
verify: | ||
name: images | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: install imagebuilder | ||
run: go install github.com/openshift/imagebuilder/cmd/[email protected] | ||
- name: images | ||
run: make images |
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 |
---|---|---|
@@ -0,0 +1,128 @@ | ||
name: Go | ||
|
||
on: | ||
workflow_dispatch: {} | ||
pull_request: | ||
branches: | ||
- main | ||
- release-* | ||
|
||
env: | ||
# Common versions | ||
GO_VERSION: '1.16' | ||
GO_REQUIRED_MIN_VERSION: '' | ||
GOPATH: '/home/runner/work/registration/registration/go' | ||
defaults: | ||
run: | ||
working-directory: go/src/open-cluster-management.io/registration | ||
|
||
jobs: | ||
verify: | ||
name: verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: verify | ||
run: make verify | ||
|
||
verify-deps: | ||
name: verify-deps | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: verify-deps | ||
run: make verify-deps | ||
|
||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: build | ||
run: make build | ||
|
||
unit: | ||
name: unit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: unit | ||
run: make test | ||
|
||
integration: | ||
name: integration | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: integration | ||
run: make test-integration | ||
|
||
e2e: | ||
name: e2e | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/registration | ||
- name: install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: install imagebuilder | ||
run: go install github.com/openshift/imagebuilder/cmd/[email protected] | ||
- name: images | ||
run: make images | ||
- name: setup kind | ||
uses: engineerd/[email protected] | ||
with: | ||
version: v0.10.0 | ||
- name: Load image on the nodes of the cluster | ||
run: | | ||
kind load docker-image --name=kind quay.io/open-cluster-management/registration:latest | ||
- name: Run e2e test | ||
run: | | ||
make test-e2e | ||
env: | ||
KUBECONFIG: /home/runner/.kube/config |
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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM docker.io/openshift/origin-release:golang-1.16 AS builder | ||
WORKDIR /go/src/github.com/open-cluster-management/registration | ||
WORKDIR /go/src/open-cluster-management.io/registration | ||
COPY . . | ||
ENV GO_PACKAGE github.com/open-cluster-management/registration | ||
ENV GO_PACKAGE open-cluster-management.io/registration | ||
|
||
RUN make build --warn-undefined-variables | ||
RUN make build-e2e --warn-undefined-variables | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest | ||
ENV USER_UID=10001 | ||
|
||
COPY --from=builder /go/src/github.com/open-cluster-management/registration/registration / | ||
COPY --from=builder /go/src/github.com/open-cluster-management/registration/e2e.test / | ||
COPY --from=builder /go/src/open-cluster-management.io/registration/registration / | ||
COPY --from=builder /go/src/open-cluster-management.io/registration/e2e.test / | ||
RUN microdnf update && microdnf clean all | ||
|
||
USER ${USER_UID} |
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
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
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
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
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
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
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
Oops, something went wrong.