Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Ye Cao <[email protected]>
  • Loading branch information
dashanji committed Dec 23, 2023
1 parent 3260f9f commit 7b77d23
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/vineyard-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,15 @@ jobs:
vineyard-kubernetes-go-
- name: golangci-lint
if: false
uses: golangci/golangci-lint-action@v3
with:
version: v1.50.0
working-directory: k8s
skip-pkg-cache: true

- name: Golang format
if: false
run: |
function prepend() { while read line; do echo "${1}${line}"; done; }
Expand All @@ -109,13 +111,15 @@ jobs:
fi
- name: Log in to GitHub Docker Registry
if: false
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build docker image
if: false
run: |
make -C k8s docker-build
Expand All @@ -133,7 +137,8 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Upload latest docker image
if: ${{ matrix.job == 'release' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }}
if: false
#if: ${{ matrix.job == 'release' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }}
run: |
# pre-publish to ghcr.io to avoid the "no basic auth credentials" error
export IMG=ghcr.io/v6d-io/v6d/vineyard-operator:${{ steps.tag.outputs.TAG }}
Expand All @@ -142,6 +147,7 @@ jobs:
make -C k8s docker-build-push-multi-arch REGISTRY=${{ env.REGISTRY }} VERSION=latest
- name: Generate the python and vineyardd image for tests
if: false
run: |
make -C k8s/test/e2e build-base-images
Expand Down

0 comments on commit 7b77d23

Please sign in to comment.