Skip to content

Commit 35dd773

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

12,964 files changed

Lines changed: 1831822 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/osx_arm64.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
jobs:
2+
stage_0_job_0:
3+
name: robotiq-description py-trees polygon-msgs mocap4r2-control-msgs color-util
4+
runs-on: macos-15
5+
strategy:
6+
fail-fast: false
7+
needs: []
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
- name: Build ros-humble-robotiq-description ros-humble-py-trees ros-humble-polygon-msgs
12+
ros-humble-mocap4r2-control-msgs ros-humble-color-util
13+
env:
14+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
15+
CURRENT_RECIPES: ros-humble-robotiq-description ros-humble-py-trees ros-humble-polygon-msgs
16+
ros-humble-mocap4r2-control-msgs ros-humble-color-util
17+
BUILD_TARGET: osx-arm64
18+
run: |
19+
export CI=azure
20+
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
21+
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
22+
.scripts/build_unix.sh --target $BUILD_TARGET
23+
stage_0_job_1:
24+
name: rclc-parameter rclc-lifecycle imu-transformer ptz-action-server-msgs robotiq-controllers
25+
runs-on: macos-15
26+
strategy:
27+
fail-fast: false
28+
needs: []
29+
steps:
30+
- name: Checkout code
31+
uses: actions/checkout@v4
32+
- name: Build ros-humble-rclc-parameter ros-humble-rclc-lifecycle ros-humble-imu-transformer
33+
ros-humble-ptz-action-server-msgs ros-humble-robotiq-controllers
34+
env:
35+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
36+
CURRENT_RECIPES: ros-humble-rclc-parameter ros-humble-rclc-lifecycle ros-humble-imu-transformer
37+
ros-humble-ptz-action-server-msgs ros-humble-robotiq-controllers
38+
BUILD_TARGET: osx-arm64
39+
run: |
40+
export CI=azure
41+
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
42+
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
43+
.scripts/build_unix.sh --target $BUILD_TARGET
44+
stage_1_job_2:
45+
name: polygon-utils mocap4r2-control rclc-examples
46+
runs-on: macos-15
47+
strategy:
48+
fail-fast: false
49+
needs:
50+
- stage_0_job_0
51+
- stage_0_job_1
52+
steps:
53+
- name: Checkout code
54+
uses: actions/checkout@v4
55+
- name: Build ros-humble-polygon-utils ros-humble-mocap4r2-control ros-humble-rclc-examples
56+
env:
57+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
58+
CURRENT_RECIPES: ros-humble-polygon-utils ros-humble-mocap4r2-control ros-humble-rclc-examples
59+
BUILD_TARGET: osx-arm64
60+
run: |
61+
export CI=azure
62+
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
63+
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
64+
.scripts/build_unix.sh --target $BUILD_TARGET
65+
name: build_osx_arm64
66+
on:
67+
push:
68+
branches:
69+
- buildbranch_osx_arm64

.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)