Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix xcode slowness #24

Merged
merged 3 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .bazelignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
bazel-bin
# ignore .git, but make sure we can get commit hash
!.git/HEAD
!.git/refs
!.git/refs/heads
!.git/packed-refs
.git/*

node_modules
bazel-out
bazel-bin
bazel-testlogs
node_modules
.cache
.idea
.vscode
.cxx
12 changes: 5 additions & 7 deletions .github/changed-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ linux:
- 'vendor/**'
- 'CMakeLists.txt'
- 'metrics/linux-gcc8-release-style.json'
- 'WORKSPACE'
- 'MODULE.bazel'
- 'BUILD.bazel'
- '.bazelrc'
- '.bazelversion'
- '.bazelignore'
- '!**/*.md'
windows:
- '.github/workflows/windows-ci.yml'
- 'src/**'
Expand All @@ -25,10 +27,6 @@ windows:
- 'vendor/**'
- '.gitmodules'
- '!**/*.md'
- 'WORKSPACE'
- 'BUILD.bazel'
- '.bazelrc'
- '.bazelversion'
ios:
- 'platform/ios/**'
- 'platform/darwin/**'
Expand All @@ -44,11 +42,11 @@ ios:
- 'test/**'
- 'vendor/**'
- '.gitmodules'
- '!**/*.md'
- 'WORKSPACE'
- 'MODULE.bazel'
- 'BUILD.bazel'
- '.bazelrc'
- '.bazelversion'
- '.bazelignore'
- 'pnpm-lock.yaml'
android:
- 'CMakeLists.txt'
Expand Down
13 changes: 2 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
/mapbox-gl-native-android/MapLibreAndroid/mapbox-gl-native
/mapbox-gl-native-android/MapLibreAndroidTestApp/mapbox-gl-native
/platform/android/MapLibreAndroidTestApp/src/main/res/values/developer-config.xml

/platform/android/gradle/configuration.gradle
/platform/android/arm64-v8a
/platform/android/armeabi-v7a
/platform/android/MapLibreAndroid/.cxx
/platform/android/MapLibreAndroid/build
/platform/android/MapLibrePlugin/build
/platform/android/MapLibreAndroidTestApp/.cxx
/platform/android/MapLibreAndroidTestApp/build
/platform/android/buildSrc/build
/platform/android/x86
/platform/android/x86_64
/cmake-build-debug
/platform/android/build
/platform/android/MapLibreAndroid/src/main/assets/sdk_versions/com.mapbox.mapboxsdk
/platform/ios/platform/ios/Mapbox.playground/build/
/platform/windows/vendor/mesa3d/
*.code-workspace

Expand All @@ -35,14 +30,11 @@ compile_commands.json
/platform/android/signing-key.text
/platform/android/.java-version
*.hprof
/platform/ios/platform/ios/benchmark/assets/tiles/tiles
/platform/ios/platform/ios/benchmark/assets/glyphs/Roboto Regular,Noto Sans Regular
/platform/ios/platform/ios/benchmark/assets/glyphs/Roboto Medium,Noto Sans Regular
/platform/ios/platform/ios/benchmark/assets/glyphs/Roboto Condensed Italic,Noto Sans Italic
/platform/ios/platform/ios/benchmark/assets/glyphs/Noto Sans Regular
/platform/android/key.json
/platform/android/site
node_modules
.cxx

# Node binaries.
/lib

Expand All @@ -59,5 +51,4 @@ __generated__
cache.sqlite
cache.sqlite-journal
out.png
/test/android/app/.cxx
/test/android/app/build
1 change: 1 addition & 0 deletions platform/node/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/lib
Loading