fix(services/s3): Mark xml deserialize error as temporary during list #1940
Workflow file for this run
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
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, | |
# software distributed under the License is distributed on an | |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
# KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations | |
# under the License. | |
name: Bindings Go CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "core/**" | |
- "bindings/c/**" | |
- "bindings/go/**" | |
- ".github/workflows/ci_bindings_go.yml" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: "v1.60" | |
working-directory: bindings/go | |
matrix: | |
needs: [ lint ] | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-matrix | |
name: Setup Matrix | |
run: | | |
MATRIX=$(yq -o=json -I=0 "." .github/scripts/test_go_binding/matrix.yaml | sed 's/ //g') | |
echo "Matrix:" | |
echo "$MATRIX" | jq . | |
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT | |
test: | |
needs: [ matrix ] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: "apache/opendal-go-services" | |
path: "tools" | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Target | |
env: | |
TARGET: ${{ matrix.build.target }} | |
run: rustup target add $TARGET | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Setup Service | |
env: | |
OPENDAL_FEATURES: "layers-blocking,services-${{ matrix.service }}" | |
run: | | |
python -m pip install toml | |
python tools/.github/scripts/setup_features.py | |
- name: Build C Binding | |
working-directory: bindings/c | |
env: | |
VERSION: "latest" | |
SERVICE: ${{ matrix.service }} | |
TARGET: ${{ matrix.build.target }} | |
CC: ${{ matrix.build.cc }} | |
run: | | |
cargo build --target $TARGET --release | |
sudo apt install zstd | |
DIR=$GITHUB_WORKSPACE/libopendal_c_${VERSION}_${SERVICE}_$TARGET | |
mkdir $DIR | |
zstd -22 ./target/$TARGET/release/libopendal_c.so -o $DIR/libopendal_c.$TARGET.so.zst | |
- name: Build Go Artifact | |
working-directory: tools/internal/generate | |
env: | |
MATRIX: ${{ needs.matrix.outputs.matrix }} | |
VERSION: "latest" | |
run: | | |
go run generate.go | |
- name: Setup Go Workspace | |
env: | |
SERVICE: ${{ matrix.service }} | |
working-directory: bindings/go/tests | |
run: | | |
go work use $GITHUB_WORKSPACE/$(echo $SERVICE | sed 's/-/_/g') | |
- name: Run tests | |
env: | |
OPENDAL_TEST: ${{ matrix.service }} | |
OPENDAL_FS_ROOT: "/tmp/opendal/" | |
working-directory: bindings/go/tests/behavior_tests | |
run: CGO_ENABLE=0 go test -v -run TestBehavior |