forked from UniversalRobots/Universal_Robots_Client_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 827 Bytes
/
win-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Windows build and tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- win-build
jobs:
win-build:
timeout-minutes: 30
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
#- name: start ursim
#run: |
#scripts/start_ursim.sh -m $ROBOT_MODEL -v $URSIM_VERSION -p $PROGRAM_FOLDER -d
#env:
#DOCKER_RUN_OPTS: --network ursim_net
#URSIM_VERSION: 'latest'
#ROBOT_MODEL: 'ur5e'
#PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/e-series'
- name: configure
#run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1
run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 -DINTEGRATION_TESTS=1
- name: build
run: cmake --build build --config Debug