2024-12-05 08:54:40 -08:00
|
|
|
name: Pull Request Backend
|
|
|
|
on:
|
|
|
|
pull_request:
|
2024-12-05 13:00:24 -08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
|
|
|
cancel-in-progress: true
|
2024-12-10 15:07:04 -05:00
|
|
|
env:
|
|
|
|
python-version: '3.10'
|
|
|
|
J40_VERSION_LABEL_STRING: ${{ vars.SCORE_VERSION }}
|
2024-12-05 08:54:40 -08:00
|
|
|
jobs:
|
2024-12-09 09:26:38 -05:00
|
|
|
# JOB to run change detection
|
|
|
|
detect-be-changes:
|
2024-12-09 12:44:05 -05:00
|
|
|
name: Detect backend changes
|
2024-12-09 09:26:38 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Required permissions
|
|
|
|
permissions:
|
|
|
|
pull-requests: read
|
|
|
|
# Set job outputs to values from filter step
|
|
|
|
outputs:
|
|
|
|
backend: ${{ steps.filter.outputs.backend }}
|
|
|
|
steps:
|
|
|
|
# For pull requests it's not necessary to checkout the code
|
|
|
|
- uses: dorny/paths-filter@v3
|
|
|
|
id: filter
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
backend:
|
|
|
|
- 'data/**'
|
2024-12-09 12:44:05 -05:00
|
|
|
- '.github/workflows/pr_backend.yml'
|
2024-12-05 15:34:10 -05:00
|
|
|
code-quality-checks:
|
2024-12-10 15:07:04 -05:00
|
|
|
name: Code quality checks and tests
|
2024-12-09 09:26:38 -05:00
|
|
|
needs: detect-be-changes
|
|
|
|
if: ${{ needs.detect-be-changes.outputs.backend == 'true' }}
|
2024-12-05 15:34:10 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: data/data-pipeline
|
|
|
|
environment: PR
|
|
|
|
steps:
|
|
|
|
- name: Checkout source
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Print variables to help debug
|
|
|
|
uses: hmarr/debug-action@v3
|
2024-12-10 15:07:04 -05:00
|
|
|
- name: Set up Python ${{ env.python-version }}
|
2024-12-05 15:34:10 -05:00
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
2024-12-10 15:07:04 -05:00
|
|
|
python-version: ${{ env.python-version }}
|
2024-12-05 15:34:10 -05:00
|
|
|
- name: Load cached Poetry installation
|
|
|
|
id: cached-poetry-dependencies
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pypoetry/virtualenvs
|
2024-12-10 15:07:04 -05:00
|
|
|
key: env-${{ runner.os }}-${{ env.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/deploy_backend_main.yml') }}
|
2024-12-05 15:34:10 -05:00
|
|
|
- name: Install poetry
|
|
|
|
uses: snok/install-poetry@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: poetry install
|
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
- name: Check code is formatted
|
|
|
|
run: poetry run black --check data_pipeline/
|
|
|
|
- name: Check code style consistency
|
|
|
|
run: poetry run flake8 -v data_pipeline/
|
|
|
|
- name: Run static code analysis
|
2024-12-05 15:35:18 -05:00
|
|
|
run: poetry run pylint data_pipeline/
|
2024-12-05 15:34:10 -05:00
|
|
|
- name: Check library safety
|
|
|
|
run: poetry run safety check --ignore 51457 --ignore 44715 --ignore 70612
|
2024-12-09 09:26:38 -05:00
|
|
|
- name: Run unit tests
|
|
|
|
run: |
|
|
|
|
poetry run pytest data_pipeline/
|
2024-12-05 08:54:40 -08:00
|
|
|
generate-score-tiles:
|
2024-12-10 15:07:04 -05:00
|
|
|
name: Score and tile generation
|
2024-12-09 09:26:38 -05:00
|
|
|
needs: detect-be-changes
|
|
|
|
if: ${{ needs.detect-be-changes.outputs.backend == 'true' }}
|
2024-12-05 08:54:40 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: data/data-pipeline
|
2024-12-05 09:30:24 -08:00
|
|
|
environment: PR
|
2024-12-05 08:54:40 -08:00
|
|
|
steps:
|
|
|
|
- name: Checkout source
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Print variables to help debug
|
|
|
|
uses: hmarr/debug-action@v3
|
2024-12-10 15:07:04 -05:00
|
|
|
- name: Set up Python ${{ env.python-version }}
|
2024-12-05 08:54:40 -08:00
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
2024-12-10 15:07:04 -05:00
|
|
|
python-version: ${{ env.python-version }}
|
2024-12-05 08:54:40 -08:00
|
|
|
- name: Load cached Poetry installation
|
|
|
|
id: cached-poetry-dependencies
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pypoetry/virtualenvs
|
2024-12-10 15:07:04 -05:00
|
|
|
key: env-${{ runner.os }}-${{ env.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/deploy_backend_main.yml') }}
|
2024-12-05 08:54:40 -08:00
|
|
|
- name: Install poetry
|
|
|
|
uses: snok/install-poetry@v1
|
|
|
|
- name: Print Poetry settings
|
|
|
|
run: poetry show -v
|
|
|
|
- name: Install dependencies
|
|
|
|
run: poetry add s4cmd && poetry install
|
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
- name: Install GDAL/ogr2ogr
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install gdal-bin
|
|
|
|
ogrinfo --version
|
|
|
|
- name: Cleanup Data
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application data-cleanup
|
|
|
|
- name: Get Census Data
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application census-data-download
|
|
|
|
- name: Run ETL
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application etl-run
|
2024-12-10 08:01:55 -08:00
|
|
|
poetry run python3 -m data_pipeline.application etl-run --dataset tribal
|
2024-12-05 08:54:40 -08:00
|
|
|
- name: Generate Score
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application score-run
|
|
|
|
- name: Score Compare
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.comparator compare-score
|
|
|
|
- name: Generate Score Post
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application generate-score-post
|
|
|
|
- name: Confirm we generated the version of the score we think we did
|
|
|
|
if: ${{ env.J40_VERSION_LABEL_STRING == '2.0' || env.J40_VERSION_LABEL_STRING == 'beta' }}
|
|
|
|
run: |
|
|
|
|
grep -v "Identified as disadvantaged due to tribal overlap" data_pipeline/data/score/downloadable/* > /dev/null
|
|
|
|
- name: Generate Score Geo
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application geo-score
|
|
|
|
- name: Run smoketest for 1.0
|
|
|
|
if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' }}
|
|
|
|
run: |
|
|
|
|
poetry run pytest data_pipeline/ -m smoketest
|
|
|
|
- name: Set timezone for tippecanoe
|
|
|
|
uses: szenius/set-timezone@v2.0
|
|
|
|
with:
|
|
|
|
timezoneLinux: "America/Los_Angeles"
|
|
|
|
- name: Get tippecanoe
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y software-properties-common libsqlite3-dev zlib1g-dev
|
|
|
|
sudo apt-add-repository -y ppa:git-core/ppa
|
|
|
|
sudo mkdir -p /tmp/tippecanoe-src
|
|
|
|
sudo git clone https://github.com/mapbox/tippecanoe.git /tmp/tippecanoe-src
|
|
|
|
- name: Make tippecanoe
|
|
|
|
working-directory: /tmp/tippecanoe-src
|
|
|
|
run: |
|
|
|
|
sudo /usr/bin/bash -c make
|
|
|
|
mkdir -p /usr/local/bin
|
|
|
|
cp tippecanoe /usr/local/bin/tippecanoe
|
|
|
|
tippecanoe -v
|
|
|
|
- name: Generate Tiles
|
|
|
|
run: |
|
|
|
|
poetry run python3 -m data_pipeline.application generate-map-tiles
|
2024-12-10 08:01:55 -08:00
|
|
|
poetry run python3 -m data_pipeline.application generate-map-tiles --generate-tribal-layer
|
2024-12-05 08:54:40 -08:00
|
|
|
|