Skip to content

Commit 5e29a6b

Browse files
zlin-flexivzongjie.lin
andauthored
Release/v1.5.1 (#1)
* 添加 .gitignore 和 .gitattributes。 * 添加项目文件。 * add README content * Modify README content * Add MoveC * "Fix contact zoneRadius error" * Fix addRotateMatingRange error * Add primitive states query * "release/v1.5.1" * "Applies to RDKv1.5.1" * “change the reference library name” * Add get/set int/double global value * updata dll * fix global double value return error and update Dll * fix fault function error * Expand functions and change interfaces * Change the ReadMe and modify the comments * Modify the project organization form * Modify windows server version * Modify .net version * Add build.yml --------- Co-authored-by: zongjie.lin <zongjie.lin@IT000519>
1 parent ce3791a commit 5e29a6b

38 files changed

+31225
-1
lines changed

.github/workflows/build.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Build on Windows
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
env:
11+
BUILD_TYPE: Release
12+
13+
jobs:
14+
build-windows:
15+
runs-on: windows-2022
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v3
20+
21+
- name: Set up MSBuild and CMake
22+
uses: microsoft/[email protected]
23+
24+
- name: Install MSYS2 (Git Bash)
25+
uses: msys2/setup-msys2@v2
26+
with:
27+
update: true
28+
29+
- name: Configure and build C++ wrapper (DLL)
30+
shell: bash
31+
run: |
32+
./build_and_install_flexiv_rdk_dll.sh
33+
34+
- name: Build C# example
35+
run: |
36+
cd csharp
37+
dotnet build build.csproj -c Release
38+
39+
- name: Run C# example
40+
run: |
41+
cd csharp
42+
dotnet run --project build.csproj -c Release

0 commit comments

Comments
 (0)