Add build files 2026-09-15-2233 #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jobs: | |
| stage_0_job_0: | |
| name: updater diagnostic-updater | |
| runs-on: macos-15 | |
| strategy: | |
| fail-fast: false | |
| needs: [] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Build ros2-diagnostic-updater ros-rolling-diagnostic-updater | |
| env: | |
| ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} | |
| CURRENT_RECIPES: ros2-diagnostic-updater ros-rolling-diagnostic-updater | |
| BUILD_TARGET: osx-arm64 | |
| run: | | |
| export CI=azure | |
| export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME | |
| export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) | |
| .scripts/build_unix.sh --target $BUILD_TARGET | |
| permissions: | |
| id-token: write | |
| attestations: write | |
| name: build_osx_arm64 | |
| on: | |
| push: | |
| branches: | |
| - buildbranch_osx_arm64 |