瀏覽代碼

Travis CI: emscripten: properly fix failing CMake install stage

The .travis.yml is getting increasingly ugly. We should maybe consider
creating separate shell scripts for each target..
pull/678/head
Ahmad Fatoum 6 年之前
父節點
當前提交
285de106d4
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: C3EAC3DE9321D59B
共有 1 個檔案被更改,包括 5 行新增1 行删除
  1. +5
    -1
      .travis.yml

+ 5
- 1
.travis.yml 查看文件

@ -132,7 +132,11 @@ script:
..
- $RUNNER cmake --build . --target
- if [ "$RELEASE" != "NO" ]; then $RUNNER cmake --build . --target package; fi
- $(which sudo) $RUNNER "$(which cmake)" --build . --target install
- if [ -n "$RUNNER" ]; then
sudo $RUNNER cmake --build . --target install;
else
$(which sudo) $RUNNER "$(which cmake)" --build . --target install;
fi
- if [ ! "$DONT_TEST" ]; then
pkg-config --static --libs raylib;
nm -g release/libraylib.a | grep glfwGetProcAddress || (echo "libraylib.a doesn't contain GLFW symbols! Aborting..." && false);

Loading…
取消
儲存