Use .json for base extension is s3 exporter #190
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 }} | |
S3_BUCKET: testing | |
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 |