Galactic Execution Test #408
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: Galactic Execution Test | |
on: | |
schedule: | |
# Run every morning to detect flakiness and broken dependencies | |
- cron: '03 22 * * *' | |
workflow_dispatch: | |
jobs: | |
binary_test: | |
name: binary execution test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
matrix: | |
ROS_DISTRO: [galactic] | |
ROS_REPO: [main, testing] | |
env: | |
DOCKER_RUN_OPTS: --network static_test_net | |
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101' | |
IMMEDIATE_TEST_OUTPUT: true | |
PARALLEL_TESTS: 2 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: galactic | |
- name: start ursim | |
run: | | |
.github/dockerursim/build_and_run_docker_ursim.sh | |
- uses: 'ros-industrial/industrial_ci@master' | |
env: | |
ROS_DISTRO: ${{ matrix.ROS_DISTRO }} | |
ROS_REPO: ${{ matrix.ROS_REPO }} |