ArmandoZ commented on code in PR #2878: URL: https://github.com/apache/incubator-opendal/pull/2878#discussion_r1323805513
########## .github/workflows/service_test_atomicdata.yml: ########## @@ -0,0 +1,57 @@ +# 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: Service Test Atomicdata + +on: + push: + branches: + - main + pull_request: + branches: + - main + paths: + - "core/src/**" + - "core/tests/**" + - "!core/src/docs/**" + - "!core/src/services/**" + - "core/src/services/atomicdata/**" + - ".github/workflows/service_test_atomicdata.yml" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +jobs: + atomicdata: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Test + shell: bash + working-directory: core + run: | + cargo test atomicdata --features services-atomicdata -j=1 + env: + RUST_BACKTRACE: full + OPENDAL_ATOMICDATA_TEST: off + OPENDAL_ATOMICDATA_ROOT: /tmp/opendal + OPENDAL_ATOMICDATA_ENDPOINT: http://localhost:9883 + OPENDAL_ATOMICDATA_PRIVATE_KEY: TODO - ${{ secrets.OPENDAL_ATOMICDATA_PRIVATE_KEY }} Review Comment: Looks like I don't have permissions to set up atomic-server and edit the key vault/secrets for github action's CI. So I left these fields as TODO and test currently turned off. To test locally, one can simply: - Install atomic-server locally following the steps at: [https://github.com/atomicdata-dev/atomic-server#4-install-using-cargo](https://github.com/atomicdata-dev/atomic-server#4-install-using-cargo) - Start atomic-server by running `atomic-server` in terminal and configure the agent info - Run `cargo test atomicdata --features services-atomicdata` in another tab under project root -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
