tools #152
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: tools | |
on: workflow_dispatch | |
concurrency: | |
group: wip | |
cancel-in-progress: true | |
env: | |
BASE_IMAGE: openpilot-base | |
DOCKER_LOGIN: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
RUN: sudo chroot /tmp/chroot /run_ci.sh | |
jobs: | |
simulator_driving: | |
name: simulator driving | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/workflows/setup-with-retry | |
- name: Build openpilot | |
run: | | |
${{ env.RUN }} "scons -j$(nproc)" | |
#- name: Run bridge test | |
# run: | | |
# ${{ env.RUN }} "source selfdrive/test/setup_xvfb.sh && \ | |
# source selfdrive/test/setup_vsound.sh && \ | |
# CI=1 pytest tools/sim/tests/test_metadrive_bridge.py" | |