Skip to content

Commit

Permalink
Metal macOS render tests updated (#2889)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcristici authored Oct 7, 2024
1 parent 2972708 commit ec26136
Show file tree
Hide file tree
Showing 17 changed files with 11 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,13 @@ jobs:
cmake --build build
- name: Run render tests on macOS
id: render_tests
if: runner.os == 'macOS'
# A few are failing
# https://github.com/maplibre/maplibre-native/issues/2741
# Almost all are failing on Intel GitHub runners (but only on CI)
continue-on-error: true
continue-on-error: ${{ runner.arch == 'X64' }}
run: ./build/mbgl-render-test-runner --manifestPath metrics/macos-xcode11-release-style.json

- name: Upload render test artifacts (MacOS)
if: runner.os == 'MacOS'
if: runner.os == 'MacOS' && steps.render_tests.outcome == 'failure'
uses: actions/upload-artifact@v4
with:
name: render-query-test-results_${{ runner.os }}_${{ matrix.arch }}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion metrics/ignores/platform-macos.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"render-tests/icon-image/icon-sdf-non-sdf-one-layer": "Failing on GitHub runner for unknown reason https://github.com/maplibre/maplibre-native/issues/377",
"render-tests/regressions/mapbox-gl-js#5642": "Failing with mbgl-render-test",
"render-tests/regressions/mapbox-gl-js#7066": "Failing with mbgl-render-test"
"render-tests/regressions/mapbox-gl-js#7066": "Failing with mbgl-render-test",
"render-tests/text-field/formatted-images": "Needs to be investigated and fixed.",
"render-tests/symbol-visibility/visible": "Needs to be investigated and fixed.",
"render-tests/fill-outline-color/zoom-and-property-function": "It will be fixed after triangulated lines will support data driven properties",
"render-tests/fill-outline-color/property-function": "It will be fixed after triangulated lines will support data driven properties",
"render-tests/fill-extrusion-color/function": "Layer Z Fighting: https://github.com/maplibre/maplibre-native/issues/1847"
}
1 change: 1 addition & 0 deletions metrics/macos-xcode11-release-metrics.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"base_test_path": "tests",
"cache_path": "cache-metrics.db",
"expectation_paths": [
"expectations/platform-macos"
],
"ignore_paths": [
"ignores/platform-all.json",
Expand Down
1 change: 1 addition & 0 deletions metrics/macos-xcode11-release-style.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"base_test_path": "integration",
"cache_path": "cache-style.db",
"expectation_paths": [
"expectations/platform-macos"
],
"ignore_paths": [
"ignores/platform-all.json",
Expand Down

0 comments on commit ec26136

Please sign in to comment.