-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* CBL-2504: Add submodule verification script * Update MyUtilities submodule remote to couchbasedeps one. And checked out the latest from couchbase-master
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 2022-Present Couchbase, Inc. | ||
# | ||
# Use of this software is governed by the Business Source License included in | ||
# the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that | ||
# file, in accordance with the Business Source License, use of this software | ||
# will be governed by the Apache License, Version 2.0, included in the file | ||
# licenses/APL2.txt. | ||
|
||
name: Check Submodules | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
verify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true # Only need one level for this check | ||
fetch-depth: 0 # Pull all history or else we won't get branch info | ||
|
||
- name: Check Submodules | ||
working-directory: ${{github.workspace}} | ||
run: | | ||
pip install termcolor | ||
./vendor/couchbase-lite-core/build_cmake/scripts/check_deps.py $GITHUB_BASE_REF ${{github.workspace}} |
This file contains 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