build(deps): bump jinja2 from 3.1.2 to 3.1.4 in /map/requirements #197
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
name: Docker Image CI | |
on: | |
push: | |
branches: '**' | |
workflow_dispatch: | |
# Allow manually triggered builds too. | |
env: | |
KEEPALIVE: 60 | |
KEEPALIVE_STALE_PITRS: 5 | |
SERVER: firehose-test.flightaware.com | |
PRINT_STATS_PERIOD: 0 | |
FH_USERNAME: ${{ secrets.FH_USERNAME }} | |
FH_APIKEY: ${{ secrets.FH_APIKEY }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.16.3] | |
python-version: [3.9] | |
steps: | |
- name: Add secrets mask | |
run: | | |
echo "::add-mask::${{ secrets.FH_USERNAME }}" | |
echo "::add-mask::${{ secrets.FH_APIKEY }}" | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Connector | |
env: | |
INIT_CMD_TIME: "pitr 1647160200" | |
INIT_CMD_ARGS: "events \"flifo\"" | |
KAFKA_TOPIC_NAME: feed1 | |
run: | | |
cd connector | |
make pip-sync-ci | |
make test-ci | |
- name: Db-updater | |
env: | |
KAFKA_TOPIC_NAME: feed1 | |
KAFKA_GROUP_NAME: group1 | |
run: | | |
cd db-updater | |
make pip-sync-ci | |
make test-ci | |
- name: Fids | |
run: | | |
cd fids | |
make pip-sync-ci | |
make test-ci | |
- name: Full_Integration | |
env: | |
INIT_CMD_ARGS: "events \"flightplan departure arrival cancellation position\"" | |
run: | | |
docker-compose build --parallel | |
docker-compose up -d | |
python3 -m pip install webdriver-manager | |
python3 -m pip install selenium | |
python3 ci_ping_frontend.py | |
docker-compose rm -fsv | |
docker volume prune -f | |
- name: Performance | |
env: | |
INIT_CMD_TIME: "pitr 1577880000" | |
INIT_CMD_ARGS: "events \"flightplan departure arrival cancellation position\"" | |
run: | | |
docker-compose up -d | |
./ci_performance_regression_test.sh |