美文网首页
Android-CI Checkout submodule

Android-CI Checkout submodule

作者: CentForever | 来源:发表于2022-04-04 23:22 被阅读0次

android.yml

背景

通过 git submodule add添加的第三方库在ci环境中无法找到文件
git submodule add https://github.com/google/leveldb.git

image.png

https://github.com/forevermgg/EnvironmentCheck/tree/main/.github/workflows

Checkout submodule

在android.yml 添加如下代码

  • name: Checkout submodule
    run: git submodule sync --recursive && git submodule update --init --recursive

相关文章

  • Android-CI Checkout submodule

    android.yml[https://github.com/forevermgg/EnvironmentChec...

  • git submodule

    如果要更新submodule 最好把submodule作为单独的项目checkout下来更新 不要放在父工程在更新...

  • 子模块

    子模块统一切分支git submodule foreach 'git checkout v1.2.1' 子模块统一...

  • git submodule 指定版本的方法

    在git submodule中可以指定子模块的版本,方法就是,首先添加子模块,然后cd到子模块,checkout到...

  • git submodule命令记录

    添加submodule:git submodule add <本地目录> 例如:git submodule ...

  • git submodule foreach --recursiv

    git submodule foreach --recursive git submodule update用于自...

  • Git submodule

    Add submodule to .gitmodules git submodule add git://gith...

  • 日常小问题

    git 子模块git submodule init && git submodule update ubuntu下...

  • git submodule

    添加submodule 拉取代码时包含submodule 已下在的项目中没有下载到submodule 子项目有更新时拉取

  • git 子模块的使用

    git submodule study 添加子模块 git submodule add http://ip:300...

网友评论

      本文标题:Android-CI Checkout submodule

      本文链接:https://www.haomeiwen.com/subject/iimhsrtx.html