This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 7f524a9a1 ci: Add bindings_go workflow (#3260)
7f524a9a1 is described below

commit 7f524a9a1f2d304c7d6ce1408c179d2cb4494781
Author: Enwei Jiao <[email protected]>
AuthorDate: Fri Oct 13 00:50:51 2023 +0800

    ci: Add bindings_go workflow (#3260)
    
    * Add bindings_go workflow
    
    * Change to actions/setup-go
    
    * Add LD_LIBRARY_PATH
    
    * Fix path
---
 .github/workflows/bindings_go.yml | 77 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/.github/workflows/bindings_go.yml 
b/.github/workflows/bindings_go.yml
new file mode 100644
index 000000000..0247332d1
--- /dev/null
+++ b/.github/workflows/bindings_go.yml
@@ -0,0 +1,77 @@
+# 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/bindings_go.yml"
+  workflow_dispatch:
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
+  cancel-in-progress: true
+
+permissions:
+  contents: read
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+      - uses: actions/setup-go@v4
+        with:
+          go-version: '1.20'
+
+      - name: Setup Rust toolchain
+        uses: ./.github/actions/setup
+
+      - name: Build c binding
+        working-directory: bindings/c
+        run: make build
+
+      - name: Check diff
+        run: git diff --exit-code
+
+      - name: Generate pkg-config file
+        run: |
+          echo "libdir=$(pwd)/target/debug/" >> opendal_c.pc
+          echo "includedir=$(pwd)/bindings/c/include/" >> opendal_c.pc
+          echo "Name: opendal_c" >> opendal_c.pc
+          echo "Description: opendal c binding" >> opendal_c.pc
+          echo "Version: 0.0.1" >> opendal_c.pc
+          echo "Libs: -L\${libdir} -lopendal_c" >> opendal_c.pc
+          echo "Cflags: -I\${includedir}" >> opendal_c.pc
+
+          echo "PKG_CONFIG_PATH=$(pwd)" >> $GITHUB_ENV
+          echo "LD_LIBRARY_PATH=$(pwd)/target/debug" >> $GITHUB_ENV
+
+      - name: Run tests
+        working-directory: bindings/go
+        run: go test -tags dynamic .

Reply via email to