Skip to content

Commit c4d08ab

Browse files
committed
Add build files 2026-03-15-0524
1 parent 21fcc18 commit c4d08ab

12,949 files changed

Lines changed: 1830444 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/win.yml

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
jobs:
2+
stage_0_job_0:
3+
name: py-trees polygon-msgs color-util imu-transformer ptz-action-server-msgs
4+
rclc-parameter rclc-lifecycle polygon-utils
5+
runs-on: windows-2022
6+
strategy:
7+
fail-fast: false
8+
needs: []
9+
env:
10+
CONDA_BLD_PATH: C:\\bld\\
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
- name: Setup pixi
15+
uses: prefix-dev/[email protected]
16+
with:
17+
pixi-version: v0.40.3
18+
cache: 'true'
19+
- uses: egor-tensin/cleanup-path@v4
20+
with:
21+
dirs: C:\Program Files\Git\usr\bin;C:\Program Files\Git\bin;C:\Program Files\Git\cmd;C:\Program
22+
Files\Git\mingw64\bin
23+
- shell: cmd
24+
run: |
25+
set "CI=true"
26+
27+
:: 4 cores available on GHA: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners
28+
:: CPU_COUNT is passed through conda build: https://github.com/conda/conda-build/pull/1149
29+
set CPU_COUNT=4
30+
31+
set PYTHONUNBUFFERED=1
32+
33+
call setup_x64
34+
35+
:: Set the conda-build working directory to a smaller path
36+
if "%CONDA_BLD_PATH%" == "" (
37+
set "CONDA_BLD_PATH=C:\\bld\\"
38+
)
39+
40+
:: On azure, there are libcrypto*.dll & libssl*.dll under
41+
:: C:\\Windows\\System32, which should not be there (no vendor dlls in windows folder).
42+
:: They would be found before the openssl libs of the conda environment, so we delete them.
43+
if defined CI (
44+
DEL C:\\Windows\\System32\\libcrypto-1_1-x64.dll || (Echo Ignoring failure to delete C:\\Windows\\System32\\libcrypto-1_1-x64.dll)
45+
DEL C:\\Windows\\System32\\libssl-1_1-x64.dll || (Echo Ignoring failure to delete C:\\Windows\\System32\\libssl-1_1-x64.dll)
46+
)
47+
48+
:: Make paths like C:\\hostedtoolcache\\windows\\Ruby\\2.5.7\\x64\\bin garbage
49+
set "PATH=%PATH:ostedtoolcache=%"
50+
name: conda-forge build setup
51+
- shell: cmd
52+
run: |
53+
setlocal EnableExtensions EnableDelayedExpansion
54+
55+
set CONDA_BLD_PATH=C:\bld
56+
echo "PATH is %PATH%"
57+
58+
rmdir /Q/S C:\Strawberry\
59+
rmdir /Q/S "C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\"
60+
61+
set "FEEDSTOCK_ROOT=%cd%"
62+
63+
mkdir %CONDA_BLD_PATH%
64+
65+
:: Enable long path names on Windows
66+
reg add HKLM\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1 /f
67+
68+
for %%X in (%CURRENT_RECIPES%) do (
69+
echo "BUILDING RECIPE %%X"
70+
cd %FEEDSTOCK_ROOT%\recipes\%%X\
71+
pixi run -v rattler-build build --recipe %FEEDSTOCK_ROOT%\recipes\%%X\ ^
72+
-m %FEEDSTOCK_ROOT%\conda_build_config.yaml ^
73+
-c conda-forge -c robostack-staging ^
74+
--output-dir %CONDA_BLD_PATH%
75+
76+
if errorlevel 1 exit 1
77+
rem -m %FEEDSTOCK_ROOT%\.ci_support\conda_forge_pinnings.yaml
78+
)
79+
80+
:: Check if .conda files exist in the win-64 directory
81+
if exist "%CONDA_BLD_PATH%\win-64\*.conda" (
82+
echo Found .conda files, starting upload...
83+
for %%F in ("%CONDA_BLD_PATH%\win-64\*.conda") do (
84+
echo Uploading %%F
85+
pixi run upload "%%F" --force
86+
if errorlevel 1 exit 1
87+
)
88+
) else (
89+
echo Warning: No .conda files found in %CONDA_BLD_PATH%\win-64
90+
echo This might be due to all the packages being skipped
91+
)
92+
env:
93+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
94+
CURRENT_RECIPES: ros-humble-py-trees ros-humble-polygon-msgs ros-humble-color-util
95+
ros-humble-imu-transformer ros-humble-ptz-action-server-msgs ros-humble-rclc-parameter
96+
ros-humble-rclc-lifecycle ros-humble-polygon-utils
97+
PYTHONUNBUFFERED: 1
98+
name: Build ros-humble-py-trees ros-humble-polygon-msgs ros-humble-color-util
99+
ros-humble-imu-transformer ros-humble-ptz-action-server-msgs ros-humble-rclc-parameter
100+
ros-humble-rclc-lifecycle ros-humble-polygon-utils
101+
name: build_win
102+
on:
103+
push:
104+
branches:
105+
- buildbranch_win

.pixi/.condapackageignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.pixi
2+
!.pixi/config.toml

.pixi/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!config.toml

.pixi/envs/default/CACHEDIR.TAG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Signature: 8a477f597d28d172789f06886806bc55
2+
# This file is a cache directory tag created by rattler.
3+
# For information about cache directory tags, see:
4+
# https://bford.info/cachedir/

.pixi/envs/default/bin/2to3

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2to3-3.11

.pixi/envs/default/bin/2to3-3.11

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/home/runner/work/ros-humble/ros-humble/.pixi/envs/default/bin/python3.11
2+
import sys
3+
from lib2to3.main import main
4+
5+
sys.exit(main("lib2to3.fixes"))

.pixi/envs/default/bin/anaconda

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/home/runner/work/ros-humble/ros-humble/.pixi/envs/default/bin/python3.11
2+
# -*- coding: utf-8 -*-
3+
import re
4+
import sys
5+
6+
from anaconda_cli_base.cli import app
7+
8+
if __name__ == '__main__':
9+
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
10+
sys.exit(app())

.pixi/envs/default/bin/binstar

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/home/runner/work/ros-humble/ros-humble/.pixi/envs/default/bin/python3.11
2+
# -*- coding: utf-8 -*-
3+
import re
4+
import sys
5+
6+
from binstar_client.scripts.cli import main
7+
8+
if __name__ == '__main__':
9+
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
10+
sys.exit(main())

.pixi/envs/default/bin/bunzip2

294 KB
Binary file not shown.

.pixi/envs/default/bin/bzcat

294 KB
Binary file not shown.

0 commit comments

Comments
 (0)