@@ -40,45 +40,38 @@ jobs:
4040 github.event_name == 'schedule' &&
4141 steps.git_info.outputs.current_commit == steps.last_successful_commit.outputs.commit-hash
4242
43- build_windows :
44- if : github.repository_owner == 'viamrobotics'
45- needs : [prepare]
46- runs-on : windows-latest
47- strategy :
48- fail-fast : false
49- matrix :
50- include :
51- - target : x86_64-windows
52- platform : windows_x86_64
53- steps :
54- - name : Checkout Code
55- uses : actions/checkout@v4
56-
57- - name : Install dependencies
58- uses : crazy-max/ghaction-chocolatey@v3
59- with :
60- args : install -y conan git
61-
62- - name : Create package
63- shell : powershell
43+ # TODO (RSDK-10666) Uncomment and fix
44+ # build_windows:
45+ # if: github.repository_owner == 'viamrobotics'
46+ # needs: [prepare]
47+ # runs-on: windows-latest
48+ # strategy:
49+ # fail-fast: false
50+ # matrix:
51+ # include:
52+ # - target: x86_64-windows
53+ # platform: windows_x86_64
54+ # steps:
55+ # - name: Checkout Code
56+ # uses: actions/checkout@v4
57+
58+ # - name: Install dependencies
59+ # uses: crazy-max/ghaction-chocolatey@v3
60+ # with:
61+ # args: install -y conan git
62+
63+ # - name: Create package
64+ # shell: powershell
65+ # run: |
66+ # Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
67+ # refreshenv
68+ # conan profile detect
6469 # conan create . `
6570 # --build=missing `
6671 # -o "&:shared=False"
67- run : |
68- Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
69- refreshenv
70- conan profile detect
71- conan install . --output-folder=build-conan --build=missing -o "&:shared=False"
72- cmake . --preset conan-default
73- cmake --build --preset=conan-release --target ALL_BUILD install -j 8
74- env :
75- CONAN_USER_HOME : c:/cache
76- CONAN_USER_HOME_SHORT : c:/cache/conan_shortpaths
77- - name : list stuff
78- run : |
79- ls
80- ls build-conan
81- ls build-conan/build
72+ # env:
73+ # CONAN_USER_HOME: c:/cache
74+ # CONAN_USER_HOME_SHORT: c:/cache/conan_shortpaths
8275
8376 build_macos :
8477 if : github.repository_owner == 'viamrobotics'
0 commit comments