mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-02 20:49:10 +00:00
add ci check for restricted imports that would prevent monero.com from building (#2093)
cherry picked from old bgsync pr
This commit is contained in:
parent
fee523cd81
commit
cec414e44b
1 changed files with 47 additions and 0 deletions
47
.github/workflows/no_restricted_imports.yaml
vendored
Normal file
47
.github/workflows/no_restricted_imports.yaml
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
name: No restricted imports in lib directory
|
||||
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
check_restricted_imports:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Check for restricted imports in lib directory
|
||||
if: github.event_name == 'pull_request'
|
||||
run: |
|
||||
RESTRICTED_PACKAGES=(
|
||||
"cw_bitcoin"
|
||||
"cw_bitcoin_cash"
|
||||
"cw_ethereum"
|
||||
"cw_evm"
|
||||
"cw_haven"
|
||||
"cw_mweb"
|
||||
"cw_nano"
|
||||
"cw_polygon"
|
||||
"cw_solana"
|
||||
"cw_tron"
|
||||
"cw_wownero"
|
||||
"cw_zano"
|
||||
)
|
||||
|
||||
FOUND_RESTRICTED=false
|
||||
|
||||
for package in "${RESTRICTED_PACKAGES[@]}"; do
|
||||
GREP_RESULT=$(find lib -type f -name "*.dart" -exec grep -l "import.*package:$package" {} \; || true)
|
||||
|
||||
if [ -n "$GREP_RESULT" ]; then
|
||||
echo "Found restricted import of '$package' in the following files:"
|
||||
echo "$GREP_RESULT"
|
||||
FOUND_RESTRICTED=true
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$FOUND_RESTRICTED" = true ]; then
|
||||
echo "Error: Restricted package imports found in lib/ directory"
|
||||
echo "Please remove these imports as they are not allowed in the lib/ directory"
|
||||
exit 1
|
||||
else
|
||||
echo "No restricted imports found. All good!"
|
||||
fi
|
Loading…
Reference in a new issue