mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-22 18:40:41 +08:00
replace .scripts
to scripts
This commit is contained in:
parent
9793b64b1a
commit
692237a99c
4 changed files with 13 additions and 14 deletions
6
.github/workflows/roa.yml
vendored
6
.github/workflows/roa.yml
vendored
|
@ -26,13 +26,13 @@ jobs:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|
||||||
- run: pip install -r .scripts/requirements.txt
|
- run: pip install -r scripts/requirements.txt
|
||||||
|
|
||||||
- run: .scripts/generate-roa.sh
|
- run: scripts/generate-roa.sh
|
||||||
|
|
||||||
- run: git -C generated diff README.md
|
- run: git -C generated diff README.md
|
||||||
|
|
||||||
- run: .scripts/push-to-roa.sh
|
- run: scripts/push-to-roa.sh
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
4
.github/workflows/test-your-pr.yml
vendored
4
.github/workflows/test-your-pr.yml
vendored
|
@ -24,9 +24,9 @@ jobs:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|
||||||
- run: pip install -r .scripts/requirements.txt
|
- run: pip install -r scripts/requirements.txt
|
||||||
|
|
||||||
- run: .scripts/generate-roa.sh
|
- run: scripts/generate-roa.sh
|
||||||
|
|
||||||
- run: git -C generated diff README.md
|
- run: git -C generated diff README.md
|
||||||
|
|
||||||
|
|
1
.scripts
1
.scripts
|
@ -1 +0,0 @@
|
||||||
scripts
|
|
|
@ -11,13 +11,13 @@ export MAX_LEN_6=64
|
||||||
mkdir -p generated
|
mkdir -p generated
|
||||||
mkdir -p generated/dns
|
mkdir -p generated/dns
|
||||||
|
|
||||||
.scripts/dns-reverse-generator.py
|
scripts/dns-reverse-generator.py
|
||||||
cp -R dns/* generated/dns
|
cp -R dns/* generated/dns
|
||||||
|
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -o generated/roa46_bird2.conf
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -o generated/roa46_bird2.conf
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -4 -o generated/roa4_bird2.conf
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -4 -o generated/roa4_bird2.conf
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -6 -o generated/roa6_bird2.conf
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -6 -o generated/roa6_bird2.conf
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -j -o generated/roa46.json
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -j -o generated/roa46.json
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -e -o generated/neonetwork.json
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -e -o generated/neonetwork.json
|
||||||
.scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -r -o generated/rfc8416.json
|
scripts/roa.py -m "$MAX_LEN_4" -M "$MAX_LEN_6" -r -o generated/rfc8416.json
|
||||||
.scripts/roa.py --summary --output generated/README.md
|
scripts/roa.py --summary --output generated/README.md
|
||||||
|
|
Loading…
Reference in a new issue