Concurrency #76
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
# Please do NOT manually edit this file. | ||
# This file is generated by 'bundle exec rake github:actions:test_template' | ||
--- | ||
name: Test | ||
'on': | ||
- push | ||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: ${{ github.ref != "refs/heads/master" }} | ||
Check failure on line 9 in .github/workflows/test.yml GitHub Actions / TestInvalid workflow file
|
||
jobs: | ||
compute_tasks: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
engine: | ||
- name: ruby | ||
version: '3.3' | ||
alias: ruby-33 | ||
container: | ||
image: ghcr.io/datadog/images-rb/engines/${{ matrix.engine.name }}:${{ matrix.engine.version }} | ||
outputs: | ||
ruby-33-matrix: "${{ steps.set-matrix.outputs.ruby-33 }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
curl -L --retry 3 -f --retry-all-errors --retry-delay 1 -o /usr/local/bin/jq https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-linux64 | ||
chmod +x /usr/local/bin/jq | ||
- run: bundle install | ||
- id: set-matrix | ||
run: | | ||
matrix_json=$(bundle exec rake github:generate_matrix) | ||
# Debug output | ||
echo "Generated JSON:" | ||
echo "$matrix_json" | ||
# Set the output | ||
echo "${{ matrix.engine.alias }}=$(echo "$matrix_json" | jq -c .)" >> $GITHUB_OUTPUT | ||
- run: bundle cache | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: bundled-dependencies-${{ github.run_id }}-${{ matrix.engine.alias }} | ||
retention-days: 1 | ||
path: | | ||
Gemfile.lock | ||
vendor/ | ||
test-ruby-33: | ||
name: 'ruby-3.3: ${{ matrix.task }} (${{ matrix.group }})' | ||
needs: | ||
- compute_tasks | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: "${{ fromJson(needs.compute_tasks.outputs.ruby-33-matrix) }}" | ||
container: | ||
image: ghcr.io/datadog/images-rb/engines/ruby:3.3 | ||
env: | ||
TEST_POSTGRES_HOST: postgres | ||
TEST_REDIS_HOST: redis | ||
services: | ||
postgres: | ||
image: postgres:9.6 | ||
credentials: | ||
username: "${{ secrets.DOCKERHUB_USERNAME }}" | ||
password: "${{ secrets.DOCKERHUB_TOKEN }}" | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: postgres | ||
redis: | ||
image: redis:6.2 | ||
credentials: | ||
username: "${{ secrets.DOCKERHUB_USERNAME }}" | ||
password: "${{ secrets.DOCKERHUB_TOKEN }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git | ||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: bundled-dependencies-${{ github.run_id }}-ruby-33 | ||
- run: bundle install --local | ||
- name: Test ${{ matrix.task }} with ${{ matrix.gemfile }} | ||
env: | ||
BUNDLE_GEMFILE: "${{ matrix.gemfile }}" | ||
run: bundle install && bundle exec rake spec:${{ matrix.task }} |