Skip to content

Commit 7f8ae20

Browse files
committed
Add build files 2026-03-18-2131
1 parent f62de34 commit 7f8ae20

14,926 files changed

Lines changed: 2677626 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.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
jobs:
2+
stage_0_job_0:
3+
name: apriltag apriltag-draw apriltag-detector
4+
runs-on: macos-15-intel
5+
strategy:
6+
fail-fast: false
7+
needs: []
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v6
11+
- name: Build ros-humble-apriltag ros-humble-apriltag-draw ros-humble-apriltag-detector
12+
env:
13+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
14+
CURRENT_RECIPES: ros-humble-apriltag ros-humble-apriltag-draw ros-humble-apriltag-detector
15+
BUILD_TARGET: osx-64
16+
run: |
17+
export CI=azure
18+
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
19+
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
20+
.scripts/build_unix.sh --target $BUILD_TARGET
21+
stage_1_job_1:
22+
name: apriltag-tools apriltag-detector-umich apriltag-detector-mit
23+
runs-on: macos-15-intel
24+
strategy:
25+
fail-fast: false
26+
needs:
27+
- stage_0_job_0
28+
steps:
29+
- name: Checkout code
30+
uses: actions/checkout@v6
31+
- name: Build ros-humble-apriltag-tools ros-humble-apriltag-detector-umich ros-humble-apriltag-detector-mit
32+
env:
33+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
34+
CURRENT_RECIPES: ros-humble-apriltag-tools ros-humble-apriltag-detector-umich
35+
ros-humble-apriltag-detector-mit
36+
BUILD_TARGET: osx-64
37+
run: |
38+
export CI=azure
39+
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
40+
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
41+
.scripts/build_unix.sh --target $BUILD_TARGET
42+
name: build_osx64
43+
on:
44+
push:
45+
branches:
46+
- buildbranch_osx

.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

306 KB
Binary file not shown.

.pixi/envs/default/bin/bzcat

306 KB
Binary file not shown.

0 commit comments

Comments
 (0)