scheduled #18
This file contains 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
name: scheduled | |
on: | |
schedule: | |
# 8 PM UTC every day | |
- cron: "0 20 * * *" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
DEB_DISTRO: [jammy, noble] | |
uses: ubi-agni/ros-builder-action/.github/workflows/build.yaml@main | |
with: | |
DEB_DISTRO: ${{ matrix.DEB_DISTRO }} | |
ROS_SOURCES: ros-one.repos | |
INSTALL_GPG_KEYS: | | |
sudo curl -sSL https://ros.packages.techfak.net/gpg.key -o /etc/apt/keyrings/ros-one-keyring.gpg | |
sudo mkdir -p /etc/ros/rosdep/sources.list.d | |
echo "yaml https://ros.packages.techfak.net/ros-one.yaml ${{ matrix.DEB_DISTRO }}" | sudo tee /etc/ros/rosdep/sources.list.d/1-ros-one.list | |
EXTRA_DEB_SOURCES: "deb [signed-by=/etc/apt/keyrings/ros-one-keyring.gpg] https://ros.packages.techfak.net ${{matrix.DEB_DISTRO}}-testing main" | |
# proceed from existing debs artifact if run_attempt > 1 | |
DOWNLOAD_DEBS: ${{ github.run_attempt != '1' }} | |
DEBS_ARTIFACT_NAME: ${{ matrix.DEB_DISTRO }}-debs | |
SKIP_EXISTING: true | |
CONTINUE_ON_ERROR: true | |
INSTALL_TO_CHROOT: false | |
deploy: | |
needs: build | |
if: success() && vars.DEPLOY_URL | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
concurrency: | |
# Ensure exclusive access to deployment target | |
group: ${{ vars.DEPLOY_URL }} | |
cancel-in-progress: false | |
steps: | |
- name: Import build artifacts to reprepro server | |
uses: ubi-agni/ros-builder-action/reprepro@main | |
with: | |
url: "${{ vars.DEPLOY_URL }}?run_id=${{ github.run_id }}&arch=x64" |