fix: upgrade python #267
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: Build unstable | |
| on: [push] | |
| concurrency: | |
| group: gradle | |
| # cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Build with Gradle | |
| run: ./gradlew build -x test | |
| - name: Test with Gradle Jacoco | |
| run: ./gradlew test jacocoTestReport --no-daemon | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| format: jacoco | |
| docker-build: | |
| needs: [ build ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| # - name: Maximize build disk space | |
| # uses: easimon/maximize-build-space@v10 | |
| # with: | |
| # root-reserve-mb: 512 | |
| # swap-size-mb: 1024 | |
| # remove-dotnet: 'true' | |
| - name: Create more disk space | |
| run: | | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf /opt/ghc | |
| sudo rm -rf "/usr/local/share/boost" | |
| sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
| sudo rm -rf /opt/hostedtoolcache | |
| - uses: actions/checkout@v4 | |
| - name: Build and push | |
| id: docker_build | |
| uses: mr-smithers-excellent/docker-build-push@v6 | |
| with: | |
| dockerfile: Dockerfile | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| image: lfoppiano/grobid-quantities | |
| registry: docker.io | |
| pushImage: ${{ github.event_name != 'pull_request' }} | |
| tags: latest-develop | |
| - name: Job summary | |
| if: always() | |
| env: | |
| IMAGE_FULL_NAME: ${{ steps.docker_build.outputs.imageFullName }} | |
| IMAGE_NAME: ${{ steps.docker_build.outputs.imageName }} | |
| IMAGE_TAGS: ${{ steps.docker_build.outputs.tags }} | |
| run: | | |
| { | |
| echo "## Docker image" | |
| echo "" | |
| echo "| Field | Value |" | |
| echo "|----------|-------|" | |
| echo "| Image | \`$IMAGE_FULL_NAME\` |" | |
| echo "| Tags | \`$IMAGE_TAGS\` |" | |
| echo "| Registry | \`docker.io\` |" | |
| echo "" | |
| echo '```' | |
| echo "docker pull $IMAGE_FULL_NAME" | |
| echo '```' | |
| } >> "$GITHUB_STEP_SUMMARY" |