fix(deps): update quarkus.platform.version to v3.32.4 #9993
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 | |
| on: | |
| pull_request: | |
| jobs: | |
| matrix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: File changes | |
| uses: trilom/file-changes-action@v1.2.4 | |
| id: file_changes | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "4.0.2" | |
| bundler-cache: true | |
| - name: Install deps | |
| run: bundle install --jobs 4 --retry 3 | |
| - name: Set matrix | |
| id: set-matrix | |
| run: echo "matrix=$(bundle exec rake ci:matrix)" >> "$GITHUB_OUTPUT" | |
| env: | |
| FILES: ${{ steps.file_changes.outputs.files }} | |
| outputs: | |
| matrix: ${{ steps.set-matrix.outputs.matrix }} | |
| test: | |
| needs: matrix | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{fromJson(needs.matrix.outputs.matrix)}} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "4.0.2" | |
| bundler-cache: true | |
| - name: Install deps | |
| run: bundle install --jobs 4 --retry 3 | |
| - name: Docker version | |
| run: docker -v | |
| - name: Configure | |
| run: bundle exec rake config | |
| - name: Build | |
| run: | | |
| make "build" -f "${DIRECTORY}/.Makefile" | |
| env: | |
| DIRECTORY: ${{ matrix.directory }} | |
| ENGINE: ${{ matrix.engine }} | |
| - name: Wait for framework HTTP readiness | |
| run: | | |
| IP_FILE="${{ matrix.directory }}/ip-${{ matrix.engine }}.txt" | |
| IP=$(cat $IP_FILE | tr -d '[:space:]') | |
| echo "Waiting for http://$IP:3000/ to respond (timeout 30s)..." | |
| SECONDS_WAITED=0 | |
| MAX_WAIT=30 | |
| until curl -s -f "http://$IP:3000/" > /dev/null; do | |
| sleep 1 | |
| SECONDS_WAITED=$((SECONDS_WAITED+1)) | |
| if [ $SECONDS_WAITED -ge $MAX_WAIT ]; then | |
| echo "Container did not become ready in $MAX_WAIT seconds!" | |
| exit 1 | |
| fi | |
| done | |
| - name: Test | |
| run: bundle exec rspec .spec | |
| env: | |
| LANGUAGE: ${{ matrix.language }} | |
| FRAMEWORK: ${{ matrix.framework }} | |
| ENGINE: ${{ matrix.engine }} |