-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from pangeo-forge/deploy-workflow
Deploy workflow
- Loading branch information
Showing
3 changed files
with
86 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Deploy recipes | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
types: [opened, reopened, synchronize, labeled] | ||
|
||
jobs: | ||
deploy-recipes: | ||
name: deploy-recipes | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Authenticate to Google Cloud" | ||
id: "auth" | ||
uses: "google-github-actions/auth@v1" | ||
with: | ||
credentials_json: "${{ secrets.GCP_DATAFLOW_SERVICE_KEY }}" | ||
- name: "Set prune config based on github event type" | ||
run: > | ||
if ${{ github.event_name == 'pull_request' }}; then | ||
echo prune=true >> $GITHUB_ENV | ||
else | ||
echo prune=false >> $GITHUB_ENV | ||
fi | ||
- name: "Deploy recipes" | ||
uses: "pangeo-forge/deploy-recipe-action@main" | ||
with: | ||
select_recipe_by_label: "true" | ||
pangeo_forge_runner_config: > | ||
{ | ||
"Bake": { | ||
"prune": ${{ env.prune }}, | ||
"bakery_class": "pangeo_forge_runner.bakery.dataflow.DataflowBakery" | ||
}, | ||
"DataflowBakery": { | ||
"use_public_ips": false, | ||
"service_account_email": "[email protected]", | ||
"project_id": "pangeo-forge-4967", | ||
"temp_gcs_location": "gs://pangeo-forge-prod-dataflow/temp" | ||
}, | ||
"TargetStorage": { | ||
"fsspec_class": "s3fs.S3FileSystem", | ||
"fsspec_args": { | ||
"key": "${{ secrets.PANGEO_FORGE_OSN_KEY }}", | ||
"secret": "${{ secrets.PANGEO_FORGE_OSN_SECRET }}", | ||
"client_kwargs": { | ||
"endpoint_url": "https://ncsa.osn.xsede.org" | ||
}, | ||
"default_cache_type": "none", | ||
"default_fill_cache": false, | ||
"use_listings_cache": false | ||
}, | ||
"root_path": "Pangeo/pangeo-forge/aqua-modis-feedstock/{job_name}" | ||
}, | ||
"InputCacheStorage": { | ||
"fsspec_class": "gcsfs.GCSFileSystem", | ||
"root_path": "gs://pangeo-forge-prod-cache" | ||
} | ||
} | ||
env: | ||
GOOGLE_APPLICATION_CREDENTIALS: "${{ steps.auth.outputs.credentials_file_path }}" | ||
EARTHDATA_USERNAME: cisaacstern | ||
EARTHDATA_PASSWORD: "${{ secrets.EARTHDATA_PASSWORD }}" |
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# FIXME: pinned to latest commit on main because concurrency limiting is not released yet | ||
git+https://github.com/pangeo-forge/pangeo-forge-recipes.git@f8dd0387b011eb16aefa178edd4c371ee414a445#egg=pangeo_forge_recipes |