Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewchambers committed Oct 19, 2024
1 parent debd71e commit 6a290fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ runs:
run: |
find . -type f -executable -not -perm 755 -exec chmod 755 {} \;
find . -type f -not -executable -not -perm 644 -exec chmod 644 {} \;
# build our docker image
- shell: bash
run: eval ${{ env.BUILD }}
run: ./tool/build_ci_chroot.sh
# build our docker image
#- shell: bash
# run: eval ${{ env.BUILD }}
16 changes: 3 additions & 13 deletions .github/workflows/tools_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
name: tools

on:
push:
branches:
- master
pull_request:
workflow_call:
inputs:
run_number:
default: '1'
required: true
type: string
on: workflow_dispatch
concurrency:
group: tools-tests-ci-run-${{ inputs.run_number }}-${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.run_id || github.head_ref || github.ref }}-${{ github.workflow }}-${{ github.event_name }}
group: wip
cancel-in-progress: true

env:
Expand All @@ -21,7 +11,7 @@ env:

BUILD: selfdrive/test/docker_build.sh base

RUN: docker run --shm-size 2G -v $GITHUB_WORKSPACE:/tmp/openpilot -w /tmp/openpilot -e FILEREADER_CACHE=1 -e PYTHONPATH=/tmp/openpilot -e NUM_JOBS -e JOB_ID -e GITHUB_ACTION -e GITHUB_REF -e GITHUB_HEAD_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID -v $GITHUB_WORKSPACE/.ci_cache/scons_cache:/tmp/scons_cache -v $GITHUB_WORKSPACE/.ci_cache/comma_download_cache:/tmp/comma_download_cache -v $GITHUB_WORKSPACE/.ci_cache/openpilot_cache:/tmp/openpilot_cache $BASE_IMAGE /bin/bash -c
RUN: echo TODO && false


jobs:
Expand Down

0 comments on commit 6a290fe

Please sign in to comment.