-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Need ogr2ogr to generate score (#1871)
- Loading branch information
1 parent
3830c66
commit b263a9a
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,12 @@ jobs: | |
aws-access-key-id: ${{ secrets.DATA_DEV_AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.DATA_DEV_AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
- name: Install GDAL/ogr2ogr | ||
run: | | ||
sudo add-apt-repository ppa:ubuntugis/ppa | ||
sudo apt-get update | ||
sudo apt-get -y install gdal-bin | ||
ogrinfo --version | ||
- name: Generate Score | ||
run: | | ||
poetry run python3 data_pipeline/application.py score-full-run | ||
|
@@ -71,13 +77,7 @@ jobs: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
repo-token-user-login: "github-actions[bot]" | ||
allow-repeats: false | ||
- name: Install GDAL/ogr2ogr | ||
run: | | ||
sudo add-apt-repository ppa:ubuntugis/ppa | ||
sudo apt-get update | ||
sudo apt-get -y install gdal-bin | ||
ogrinfo --version | ||
- name: Set timezone for tippecanoe | ||
- name: Set timezone for tippecanoe | ||
uses: szenius/[email protected] | ||
with: | ||
timezoneLinux: "America/Los_Angeles" | ||
|
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