2020-05-01 17:45:30 +08:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
|
|
|
name: Test Your PR
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Generate ROA
|
2020-06-04 11:53:59 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-01 17:45:30 +08:00
|
|
|
|
|
|
|
steps:
|
2020-05-23 19:00:02 +08:00
|
|
|
- uses: actions/checkout@master
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2020-05-23 19:00:02 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt update -qq
|
2020-06-04 11:53:59 +08:00
|
|
|
sudo apt install -y python3 git openssh-client \
|
|
|
|
python3-toml python3-tabulate
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2020-05-23 19:00:02 +08:00
|
|
|
- name: Run roa script
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
maxlen4=29
|
|
|
|
maxlen6=64
|
|
|
|
mkdir -p roa_dir
|
2020-06-04 11:53:59 +08:00
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -o roa_dir/roa46_bird2.conf
|
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -4 -o roa_dir/roa4_bird2.conf
|
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -6 -o roa_dir/roa6_bird2.conf
|
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -j -o roa_dir/roa46.json
|
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -e -o roa_dir/neonetwork.json
|
|
|
|
python3 scripts/roa.py -m ${maxlen4} -M ${maxlen6} -r -o roa_dir/rfc8416.json
|
|
|
|
python3 scripts/roa.py --summary --output roa_dir/README.txt
|