Update Pillow to 10.1.0 for Python 3.13 compatibility #18
Workflow file for this run
This file contains hidden or 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: CI Live | |
| on: | |
| pull_request_target: | |
| types: [labeled] | |
| jobs: | |
| test-live: | |
| runs-on: ubuntu-18.04 | |
| if: contains(github.event.pull_request.labels.*.name, 'safe to test') | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - run: make github-env | |
| env: | |
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
| - run: | | |
| make \ | |
| -e BUILD_TARGET=runtime \ | |
| -e REGISTRATION_CREDENTIALS="$GITHUB_AUTH_TOKEN" \ | |
| -e LOKOLE_QUEUE_BROKER_SCHEME=azureservicebus \ | |
| -e LOKOLE_RESOURCE_SUFFIX="$SUFFIX" \ | |
| -e APPINSIGHTS_INSTRUMENTATIONKEY="$SUFFIX" \ | |
| -e AZURITE_ACCOUNT="$TEST_AZURE_STORAGE_ACCOUNT" \ | |
| -e AZURITE_KEY="$TEST_AZURE_STORAGE_KEY" \ | |
| -e AZURITE_HOST="" \ | |
| -e AZURITE_SECURE="True" \ | |
| -e TEST_STEP_DELAY=90 \ | |
| -e LIVE="True" \ | |
| build start integration-tests | |
| - run: make status | |
| if: ${{ failure() }} | |
| - run: make clean-storage stop | |
| if: ${{ always() }} |