mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:49:06 +08:00
DEV: Drop Ruby version from Github job name (#24475)
Why this change? Right now, the job names are `core system 3.2`, `core frontend 3.2` etc. The problem here is that 3.2 is very vague. I thought about making the job names something like `core system (Ruby 3.2)` but then wondered if there is even value in including that when we are only running with one ruby version in the matrix all the time. Therefore, I decided to drop `3.2` from the job names.
This commit is contained in:
parent
97404741db
commit
ebf7553ad7
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -22,7 +22,7 @@ permissions:
|
|||
jobs:
|
||||
build:
|
||||
if: github.event_name == 'pull_request' || github.repository != 'discourse/discourse-private-mirror'
|
||||
name: ${{ matrix.target }} ${{ matrix.build_type }} ${{ matrix.ruby }}
|
||||
name: ${{ matrix.target }} ${{ matrix.build_type }}
|
||||
runs-on: ${{ (matrix.build_type == 'annotations') && 'ubuntu-latest' || 'ubuntu-20.04-8core' }}
|
||||
container: discourse/discourse_test:slim${{ (matrix.build_type == 'frontend' || matrix.build_type == 'system') && '-browsers' || '' }}${{ (matrix.ruby == '3.1') && '-ruby-3.1.0' || '' }}
|
||||
timeout-minutes: 20
|
||||
|
|
Loading…
Reference in New Issue
Block a user