Add wait wrapper around Batch V1/V2 user action calls until the status changes #1763
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
- "develop" | |
workflow_call: | |
concurrency: | |
# This will cancel outdated runs on the same pull-request, but not runs for other triggers | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
# The only way to simulate if-else statement | |
CHECKOUT_BRANCH: ${{ github.event_name == 'schedule' && 'develop' || github.ref }} | |
jobs: | |
check-pre-commit-hooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.CHECKOUT_BRANCH }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- uses: pre-commit/action@v3.0.0 | |
with: | |
extra_args: --all-files --verbose | |
check-code-pylint-and-mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.CHECKOUT_BRANCH }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
cache: pip # caching the entire environment is faster when cache exists but slower for cache creation | |
- name: Install packages | |
run: pip install --upgrade --upgrade-strategy eager -e .[AWS,DEV] | |
- name: Run mypy | |
run: mypy sentinelhub | |
- name: Run pylint | |
if: success() || failure() # always() has the issue that it also runs when the workflow is cancelled | |
run: pylint sentinelhub | |
test-on-github: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
include: | |
# A flag marks whether full or partial tests should be run | |
# We don't run integration tests on pull requests from outside repos, because they don't have secrets | |
- python-version: "3.8" | |
full_test_suite: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.CHECKOUT_BRANCH }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install packages | |
run: pip install --upgrade --upgrade-strategy eager -e .[AWS,DEV] | |
- name: Run full tests and code coverage | |
if: ${{ matrix.full_test_suite }} | |
run: | | |
sentinelhub.config \ | |
--sh_client_id "${{ secrets.SH_CLIENT_ID }}" \ | |
--sh_client_secret "${{ secrets.SH_CLIENT_SECRET }}" \ | |
--instance_id "${{ secrets.INSTANCE_ID }}" \ | |
--aws_access_key_id "${{ secrets.AWS_ACCESS_KEY_ID }}" \ | |
--aws_secret_access_key "${{ secrets.AWS_SECRET_ACCESS_KEY }}" | |
if [ ${{ github.event_name }} == 'push' ]; then | |
pytest --cov --cov-report=term --cov-report=xml | |
else | |
pytest | |
fi | |
- name: Run reduced tests | |
if: ${{ !matrix.full_test_suite }} | |
run: | | |
pytest -m "not sh_integration and not aws_integration" | |
# - name: Upload code coverage | |
# if: ${{ matrix.full_test_suite && github.event_name == 'push' }} | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# files: coverage.xml | |
# fail_ci_if_error: true | |
# verbose: false | |
mirror-and-integration-test-on-gitlab: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Mirror + trigger CI | |
uses: SvanBoxel/gitlab-mirror-and-ci-action@master | |
with: | |
args: "https://hello.planet.com/code/eo/code/sentinelhub-py-dev/" | |
env: | |
FOLLOW_TAGS: "true" | |
GITLAB_HOSTNAME: "hello.planet.com/code" | |
GITLAB_USERNAME: "github-action" | |
GITLAB_PASSWORD: ${{ secrets.GITLAB_PASSWORD }} | |
GITLAB_PROJECT_ID: "9711" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |