mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
move remaining big files into LFS (#30053)
This commit is contained in:
12
.gitattributes
vendored
12
.gitattributes
vendored
@@ -1,6 +1,16 @@
|
||||
*.dlc filter=lfs diff=lfs merge=lfs -text
|
||||
*.onnx filter=lfs diff=lfs merge=lfs -text
|
||||
selfdrive/car/tests/test_models_segs.txt filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
selfdrive/assets/fonts/*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
selfdrive/assets/training/*.png filter=lfs diff=lfs merge=lfs -text
|
||||
system/hardware/tici/updater filter=lfs diff=lfs merge=lfs -text
|
||||
selfdrive/ui/qt/spinner_larch64 filter=lfs diff=lfs merge=lfs -text
|
||||
selfdrive/ui/qt/text_larch64 filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/**/*.a filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/**/*.so filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/**/*.dylib filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/acados/*/t_renderer filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/bootstrap/bootstrap-icons.svg filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/qt5/larch64/bin/lrelease filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/qt5/larch64/bin/lupdate filter=lfs diff=lfs merge=lfs -text
|
||||
third_party/catch2/include/catch2/catch.hpp filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
8
.github/workflows/selfdrive_tests.yaml
vendored
8
.github/workflows/selfdrive_tests.yaml
vendored
@@ -38,6 +38,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
- run: git lfs pull
|
||||
- name: Build devel
|
||||
timeout-minutes: 1
|
||||
run: TARGET_DIR=$STRIPPED_DIR release/build_devel.sh
|
||||
@@ -95,6 +96,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
- run: git lfs pull
|
||||
- name: Determine pre-existing Homebrew packages
|
||||
if: steps.dependency-cache.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
@@ -198,7 +200,6 @@ jobs:
|
||||
$DOCKER_LOGIN
|
||||
- uses: ./.github/workflows/setup-with-retry
|
||||
with:
|
||||
git_lfs: false
|
||||
docker_hub_pat: ${{ secrets.DOCKER_HUB_PAT }}
|
||||
- name: Build and push CL Docker image
|
||||
if: matrix.arch == 'x86_64'
|
||||
@@ -230,8 +231,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
- name: Build Docker image
|
||||
run: eval "$BUILD"
|
||||
- uses: ./.github/workflows/setup-with-retry
|
||||
- name: pre-commit
|
||||
timeout-minutes: 4
|
||||
run: ${{ env.RUN }} "unset PYTHONWARNINGS && pre-commit run --all"
|
||||
@@ -394,6 +394,7 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
ref: ${{ github.event.pull_request.base.ref }}
|
||||
- run: git lfs pull
|
||||
- uses: ./.github/workflows/setup-with-retry
|
||||
- name: Get base car info
|
||||
run: |
|
||||
@@ -403,6 +404,7 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
path: current
|
||||
- run: cd current && git lfs pull
|
||||
- name: Save car docs diff
|
||||
id: save_diff
|
||||
run: |
|
||||
|
||||
@@ -5,10 +5,6 @@ inputs:
|
||||
description: 'Auth token for Docker Hub, required for BuildJet jobs'
|
||||
required: false
|
||||
default: ''
|
||||
git_lfs:
|
||||
description: 'Whether or not to pull the git lfs'
|
||||
required: false
|
||||
default: 'true'
|
||||
cache_key_prefix:
|
||||
description: 'Prefix for caching key'
|
||||
required: false
|
||||
@@ -26,7 +22,6 @@ runs:
|
||||
continue-on-error: true
|
||||
with:
|
||||
docker_hub_pat: ${{ inputs.docker_hub_pat }}
|
||||
git_lfs: ${{ inputs.git_lfs }}
|
||||
cache_key_prefix: ${{ inputs.cache_key_prefix }}
|
||||
is_retried: true
|
||||
- if: steps.setup1.outcome == 'failure'
|
||||
@@ -38,7 +33,6 @@ runs:
|
||||
continue-on-error: true
|
||||
with:
|
||||
docker_hub_pat: ${{ inputs.docker_hub_pat }}
|
||||
git_lfs: ${{ inputs.git_lfs }}
|
||||
cache_key_prefix: ${{ inputs.cache_key_prefix }}
|
||||
is_retried: true
|
||||
- if: steps.setup2.outcome == 'failure'
|
||||
@@ -49,6 +43,5 @@ runs:
|
||||
uses: ./.github/workflows/setup
|
||||
with:
|
||||
docker_hub_pat: ${{ inputs.docker_hub_pat }}
|
||||
git_lfs: ${{ inputs.git_lfs }}
|
||||
cache_key_prefix: ${{ inputs.cache_key_prefix }}
|
||||
is_retried: true
|
||||
|
||||
5
.github/workflows/setup/action.yaml
vendored
5
.github/workflows/setup/action.yaml
vendored
@@ -5,10 +5,6 @@ inputs:
|
||||
description: 'Auth token for Docker Hub, required for BuildJet jobs'
|
||||
required: true
|
||||
default: ''
|
||||
git_lfs:
|
||||
description: 'Whether or not to pull the git lfs'
|
||||
required: true
|
||||
default: 'true'
|
||||
cache_key_prefix:
|
||||
description: 'Prefix for caching key'
|
||||
required: true
|
||||
@@ -30,7 +26,6 @@ runs:
|
||||
|
||||
# do this after checkout to ensure our custom LFS config is used to pull from GitLab
|
||||
- shell: bash
|
||||
if: ${{ inputs.git_lfs == 'true' }}
|
||||
run: git lfs pull
|
||||
|
||||
# on BuildJet runners, must be logged into DockerHub to avoid rate limiting
|
||||
|
||||
4
.github/workflows/tools_tests.yaml
vendored
4
.github/workflows/tools_tests.yaml
vendored
@@ -72,8 +72,6 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
- uses: ./.github/workflows/setup-with-retry
|
||||
with:
|
||||
git_lfs: false
|
||||
- name: Setup to push to repo
|
||||
if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request' && github.repository == 'commaai/openpilot'
|
||||
run: |
|
||||
@@ -91,8 +89,6 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
- uses: ./.github/workflows/setup-with-retry
|
||||
with:
|
||||
git_lfs: false
|
||||
- name: Use local image for testing devcontainer with latest base image
|
||||
run: |
|
||||
echo "USE_LOCAL_IMAGE=true" >> "$GITHUB_ENV"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
third_party/acados/Darwin/lib/libacados.dylib
vendored
BIN
third_party/acados/Darwin/lib/libacados.dylib
vendored
Binary file not shown.
BIN
third_party/acados/Darwin/lib/libblasfeo.dylib
vendored
BIN
third_party/acados/Darwin/lib/libblasfeo.dylib
vendored
Binary file not shown.
BIN
third_party/acados/Darwin/lib/libhpipm.dylib
vendored
BIN
third_party/acados/Darwin/lib/libhpipm.dylib
vendored
Binary file not shown.
BIN
third_party/acados/Darwin/lib/libqpOASES_e.3.1.dylib
vendored
BIN
third_party/acados/Darwin/lib/libqpOASES_e.3.1.dylib
vendored
Binary file not shown.
BIN
third_party/acados/Darwin/t_renderer
vendored
BIN
third_party/acados/Darwin/t_renderer
vendored
Binary file not shown.
BIN
third_party/acados/larch64/lib/libacados.so
vendored
BIN
third_party/acados/larch64/lib/libacados.so
vendored
Binary file not shown.
BIN
third_party/acados/larch64/lib/libblasfeo.so
vendored
BIN
third_party/acados/larch64/lib/libblasfeo.so
vendored
Binary file not shown.
BIN
third_party/acados/larch64/lib/libhpipm.so
vendored
BIN
third_party/acados/larch64/lib/libhpipm.so
vendored
Binary file not shown.
BIN
third_party/acados/larch64/t_renderer
vendored
BIN
third_party/acados/larch64/t_renderer
vendored
Binary file not shown.
BIN
third_party/acados/x86_64/lib/libacados.so
vendored
BIN
third_party/acados/x86_64/lib/libacados.so
vendored
Binary file not shown.
BIN
third_party/acados/x86_64/lib/libblasfeo.so
vendored
BIN
third_party/acados/x86_64/lib/libblasfeo.so
vendored
Binary file not shown.
BIN
third_party/acados/x86_64/lib/libhpipm.so
vendored
BIN
third_party/acados/x86_64/lib/libhpipm.so
vendored
Binary file not shown.
BIN
third_party/acados/x86_64/t_renderer
vendored
BIN
third_party/acados/x86_64/t_renderer
vendored
Binary file not shown.
4
third_party/bootstrap/bootstrap-icons.svg
vendored
4
third_party/bootstrap/bootstrap-icons.svg
vendored
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 132 B |
17973
third_party/catch2/include/catch2/catch.hpp
vendored
17973
third_party/catch2/include/catch2/catch.hpp
vendored
File diff suppressed because it is too large
Load Diff
BIN
third_party/libyuv/Darwin/lib/libyuv.a
vendored
BIN
third_party/libyuv/Darwin/lib/libyuv.a
vendored
Binary file not shown.
BIN
third_party/libyuv/larch64/lib/libyuv.a
vendored
BIN
third_party/libyuv/larch64/lib/libyuv.a
vendored
Binary file not shown.
BIN
third_party/libyuv/x86_64/lib/libyuv.a
vendored
BIN
third_party/libyuv/x86_64/lib/libyuv.a
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
third_party/qt5/larch64/bin/lrelease
vendored
BIN
third_party/qt5/larch64/bin/lrelease
vendored
Binary file not shown.
BIN
third_party/qt5/larch64/bin/lupdate
vendored
BIN
third_party/qt5/larch64/bin/lupdate
vendored
Binary file not shown.
Binary file not shown.
BIN
third_party/snpe/aarch64-ubuntu-gcc7.5/libSNPE.so
vendored
BIN
third_party/snpe/aarch64-ubuntu-gcc7.5/libSNPE.so
vendored
Binary file not shown.
Binary file not shown.
BIN
third_party/snpe/aarch64-ubuntu-gcc7.5/libhta.so
vendored
BIN
third_party/snpe/aarch64-ubuntu-gcc7.5/libhta.so
vendored
Binary file not shown.
Binary file not shown.
BIN
third_party/snpe/dsp/libcalculator_skel.so
vendored
BIN
third_party/snpe/dsp/libcalculator_skel.so
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
third_party/snpe/x86_64-linux-clang/libHtpPrepare.so
vendored
BIN
third_party/snpe/x86_64-linux-clang/libHtpPrepare.so
vendored
Binary file not shown.
BIN
third_party/snpe/x86_64-linux-clang/libSNPE.so
vendored
BIN
third_party/snpe/x86_64-linux-clang/libSNPE.so
vendored
Binary file not shown.
BIN
third_party/snpe/x86_64-linux-clang/libomp.so
vendored
BIN
third_party/snpe/x86_64-linux-clang/libomp.so
vendored
Binary file not shown.
Reference in New Issue
Block a user