This is an automated email from the ASF dual-hosted git repository. yuchanns pushed a commit to branch bindings-go-more-svcs in repository https://gitbox.apache.org/repos/asf/opendal.git
commit c4497c892ed72e84583fcc28fec272b2b07cc8c6 Author: Hanchin Hsieh <[email protected]> AuthorDate: Tue Nov 19 15:57:46 2024 +0800 ci(bindings/go): support more storage services Signed-off-by: Hanchin Hsieh <[email protected]> --- .github/scripts/test_go_binding/matrix.yaml | 4 ++++ .github/workflows/ci_bindings_go.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/scripts/test_go_binding/matrix.yaml b/.github/scripts/test_go_binding/matrix.yaml index b64fa19b6..e6aeca671 100644 --- a/.github/scripts/test_go_binding/matrix.yaml +++ b/.github/scripts/test_go_binding/matrix.yaml @@ -28,4 +28,8 @@ build: os: "macos-latest" service: - "fs" + - "hdfs" + - "gcs" + - "oss" + - "azblob" diff --git a/.github/workflows/ci_bindings_go.yml b/.github/workflows/ci_bindings_go.yml index 2264e18fa..9e3576c7a 100644 --- a/.github/workflows/ci_bindings_go.yml +++ b/.github/workflows/ci_bindings_go.yml @@ -125,7 +125,7 @@ jobs: - name: Build Go Artifact working-directory: tools/internal/generate env: - MATRIX: '{"build": [${{ toJson(matrix.build) }}], "service": ["${{ matrix.service }}"]}' + MATRIX: '{"build": [${{ toJson(matrix.build) }}], "service": ${{ toJson(fromJson(needs.matrix.outputs.matrix).service) }}}' VERSION: "latest" run: | go run generate.go
