This repository was archived by the owner on Aug 16, 2026. It is now read-only.
fix(ci): use relative path for artifact upload + bump actions versions - #66
Merged
Conversation
Co-authored-by: traeagent <traeagent@users.noreply.github.com>
- gles/loader: remove dlopen/path_prefix/open_lib, keep RTLD_MAIN_ONLY - gles/loader.h: remove open_lib decl, simplify NATIVE_FUNCTION_HEAD (no ELF alias) - egl/loader: remove unused destroy_temp_egl_ctx - glx/lookup: remove #ifdef __APPLE__ branch, iOS-only dlsym path - gl/log: remove __ANDROID__ stub wrapper, keep no-op - gl/mg: remove __APPLE__ conditionals, no-op log functions on iOS - gl/getter: GL_MG_mobilegles, MobileGLES strings, remove non-Apple GL_EXTENSIONS branch - gl/buffer: remove BIN_FILE_PREFIX and ARB alias block (Mach-O incompatible) - gl/texture, FSR1: remove __ANDROID__/__APPLE__ platform conditionals - gl/glsl_for_es: MG_MOBILEGLES macros, MobileGLES comment - Rename all MOBILEGLUES_* header guards to MOBILEGLES_* - Update file headers via update-source-file-header.py (MobileGLES) - Rewrite README.md and CI workflow for MobileGLES iOS-only
The hardcoded absolute path /Users/runner/work/MobileGLES/MobileGLES/... was wrong for this repo (actual workspace is MobileGLES-Wrapper), causing "No files were found" warning and zero artifacts uploaded. - path: MobileGlues-cpp/build/*.dylib (relative, globs only the dylib) - if-no-files-found: error (fail loudly instead of silent empty upload) - actions/checkout@v3 -> @v4 (Node 20 deprecation)
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Previous CI run completed successfully but uploaded zero artifacts:
The hardcoded absolute path was wrong for this repo (actual workspace is
MobileGLES-Wrapper, notMobileGLES).Fix
path: MobileGlues-cpp/build/*.dylib— relative path, globs only the dylibif-no-files-found: error— fail loudly instead of silent empty uploadactions/checkout@v3→@v4— fixes Node 20 deprecation warning