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

Error in continous_deployment script #2942

Closed
Yaraslaut opened this issue May 15, 2022 · 1 comment
Closed

Error in continous_deployment script #2942

Yaraslaut opened this issue May 15, 2022 · 1 comment
Assignees

Comments

@Yaraslaut
Copy link

During zip section of the script following command is used:

zip ${ARCHIVE} \
bin/glslangValidator \
include/glslang/* \
lib/libGenericCodeGen${SUFFIX}.a \
lib/libglslang${SUFFIX}.a \
lib/libglslang-default-resource-limits${SUFFIX}.a \
lib/libHLSL${SUFFIX}.a \
lib/libMachineIndependent${SUFFIX}.a \
lib/libOGLCompiler${SUFFIX}.a \
lib/libOSDependent${SUFFIX}.a \
lib/libSPIRV${SUFFIX}.a \
lib/libSPVRemapper${SUFFIX}.a \
lib/libSPIRV-Tools${SUFFIX}.a \
lib/libSPIRV-Tools-opt${SUFFIX}.a

In such way for the directory /include/glslang/* only files directly inside this path will be included and archive will contain only empty folders in this path. You can check it in you last released archives.
You can add recursive option to add all *.h files inside include. simply:
zip -r ${ARCHIVE} ....

@jeremy-lunarg jeremy-lunarg self-assigned this May 16, 2022
@jeremy-lunarg
Copy link
Contributor

Fixed by #2979.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants