From 3ee45c9dfb76d8a530d4f072dfcae9ac369cb362 Mon Sep 17 00:00:00 2001 From: Dianjin Wang Date: Tue, 5 Nov 2024 11:35:19 +0800 Subject: [PATCH] Update test workflow for ASF --- .github/workflows/build_and_unit_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_unit_test.yml b/.github/workflows/build_and_unit_test.yml index 7472860..fb23ce3 100644 --- a/.github/workflows/build_and_unit_test.yml +++ b/.github/workflows/build_and_unit_test.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - path: go/pkg/mod/github.com/cloudberrydb/gpbackup + path: go/pkg/mod/github.com/apache/cloudberry-gpbackup - name: Set up Go uses: actions/setup-go@v2 @@ -29,15 +29,15 @@ jobs: - name: Dependencies run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup make depend - name: Build run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup make build - name: Unit Test run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup make test