Merge remote-tracking branch 'mastodon/main' into merge/mastodon-main… #1718
Workflow file for this run
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
name: Ruby Testing | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
- 'renovate/**' | |
pull_request: | |
env: | |
BUNDLE_CLEAN: true | |
BUNDLE_FROZEN: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
mode: | |
- production | |
- test | |
env: | |
RAILS_ENV: ${{ matrix.mode }} | |
BUNDLE_WITH: ${{ matrix.mode }} | |
SECRET_KEY_BASE_DUMMY: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Twitter theme submodules | |
run: git submodule update --init | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
- name: Set up Javascript environment | |
uses: ./.github/actions/setup-javascript | |
with: | |
onlyProduction: 'true' | |
- name: Precompile assets | |
# Previously had set this, but it's not supported | |
# export NODE_OPTIONS=--openssl-legacy-provider | |
run: |- | |
NODE_OPTIONS=--openssl-legacy-provider ./bin/rails assets:precompile | |
- name: Archive asset artifacts | |
run: | | |
tar --exclude={"*.br","*.gz"} -zcf artifacts.tar.gz public/assets public/packs* | |
- uses: actions/upload-artifact@v4 | |
if: matrix.mode == 'test' | |
with: | |
path: |- | |
./artifacts.tar.gz | |
name: ${{ github.sha }} | |
retention-days: 0 | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
services: | |
postgres: | |
image: postgres:16-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:7-alpine | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 6379:6379 | |
env: | |
DB_HOST: localhost | |
DB_USER: postgres | |
DB_PASS: postgres | |
DISABLE_SIMPLECOV: ${{ matrix.ruby-version != '.ruby-version' }} | |
RAILS_ENV: test | |
ALLOW_NOPAM: true | |
PAM_ENABLED: true | |
PAM_DEFAULT_SERVICE: pam_test | |
PAM_CONTROLLED_SERVICE: pam_test_controlled | |
OIDC_ENABLED: true | |
OIDC_SCOPE: read | |
SAML_ENABLED: true | |
CAS_ENABLED: true | |
BUNDLE_WITH: 'pam_authentication test' | |
GITHUB_RSPEC: ${{ matrix.ruby-version == '.ruby-version' && github.event.pull_request && 'true' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- '3.1' | |
- '3.2' | |
- '3.3' | |
- 'head' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
path: './' | |
name: ${{ github.sha }} | |
- name: Expand archived asset artifacts | |
run: | | |
tar xvzf artifacts.tar.gz | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
with: | |
ruby-version: ${{ matrix.ruby-version}} | |
additional-system-dependencies: ffmpeg libpam-dev | |
- name: Load database schema | |
run: | | |
bin/rails db:setup | |
bin/flatware fan bin/rails db:test:prepare | |
- run: bin/flatware rspec -r ./spec/flatware_helper.rb | |
- name: Upload coverage reports to Codecov | |
if: matrix.ruby-version == '.ruby-version' | |
uses: codecov/codecov-action@v4 | |
with: | |
files: coverage/lcov/*.lcov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test-libvips: | |
name: Libvips tests | |
runs-on: ubuntu-24.04 | |
needs: | |
- build | |
services: | |
postgres: | |
image: postgres:14-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:7-alpine | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 6379:6379 | |
env: | |
DB_HOST: localhost | |
DB_USER: postgres | |
DB_PASS: postgres | |
DISABLE_SIMPLECOV: ${{ matrix.ruby-version != '.ruby-version' }} | |
RAILS_ENV: test | |
ALLOW_NOPAM: true | |
PAM_ENABLED: true | |
PAM_DEFAULT_SERVICE: pam_test | |
PAM_CONTROLLED_SERVICE: pam_test_controlled | |
OIDC_ENABLED: true | |
OIDC_SCOPE: read | |
SAML_ENABLED: true | |
CAS_ENABLED: true | |
BUNDLE_WITH: 'pam_authentication test' | |
GITHUB_RSPEC: ${{ matrix.ruby-version == '.ruby-version' && github.event.pull_request && 'true' }} | |
MASTODON_USE_LIBVIPS: true | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- '3.1' | |
- '3.2' | |
- '3.3' | |
- 'head' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
path: './' | |
name: ${{ github.sha }} | |
- name: Expand archived asset artifacts | |
run: | | |
tar xvzf artifacts.tar.gz | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
with: | |
ruby-version: ${{ matrix.ruby-version}} | |
additional-system-dependencies: ffmpeg libpam-dev libyaml-dev | |
- name: Load database schema | |
run: './bin/rails db:create db:schema:load db:seed' | |
- run: bin/rspec --tag paperclip_processing | |
- name: Upload coverage reports to Codecov | |
if: matrix.ruby-version == '.ruby-version' | |
uses: codecov/codecov-action@v4 | |
with: | |
files: coverage/lcov/mastodon.lcov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test-e2e: | |
name: End to End testing | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
services: | |
postgres: | |
image: postgres:16-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:7-alpine | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 6379:6379 | |
env: | |
DB_HOST: localhost | |
DB_USER: postgres | |
DB_PASS: postgres | |
DISABLE_SIMPLECOV: true | |
RAILS_ENV: test | |
BUNDLE_WITH: test | |
LOCAL_DOMAIN: localhost:3000 | |
LOCAL_HTTPS: false | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- '3.1' | |
- '3.2' | |
- '3.3' | |
- 'head' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Twitter theme submodules | |
run: git submodule update --init | |
- uses: actions/download-artifact@v4 | |
with: | |
path: './' | |
name: ${{ github.sha }} | |
- name: Expand archived asset artifacts | |
run: | | |
tar xvzf artifacts.tar.gz | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
with: | |
ruby-version: ${{ matrix.ruby-version}} | |
additional-system-dependencies: ffmpeg | |
- name: Set up Javascript environment | |
uses: ./.github/actions/setup-javascript | |
- run: NODE_OPTIONS=--openssl-legacy-provider ./bin/rails assets:precompile | |
- name: Load database schema | |
run: './bin/rails db:create db:schema:load db:seed' | |
- run: bin/rspec spec/system --tag streaming --tag js | |
- name: Archive logs | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: e2e-logs-${{ matrix.ruby-version }} | |
path: log/ | |
- name: Archive test screenshots | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: e2e-screenshots | |
path: tmp/capybara/ | |
test-search: | |
name: Elastic Search integration testing | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
services: | |
postgres: | |
image: postgres:16-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:7-alpine | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10ms | |
--health-timeout 3s | |
--health-retries 50 | |
ports: | |
- 6379:6379 | |
env: | |
DB_HOST: localhost | |
DB_USER: postgres | |
DB_PASS: postgres | |
DISABLE_SIMPLECOV: true | |
RAILS_ENV: test | |
BUNDLE_WITH: test | |
ES_ENABLED: true | |
ES_HOST: localhost | |
ES_PORT: 9200 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- '3.1' | |
- '3.2' | |
- '3.3' | |
- 'head' | |
elasticsearch-version: | |
- '7.17.15' | |
search-image: | |
- docker.elastic.co/elasticsearch/elasticsearch:7.17.13 | |
include: | |
- ruby-version: 'head' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
path: './' | |
name: ${{ github.sha }} | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
with: | |
ruby-version: ${{ matrix.ruby-version}} | |
additional-system-dependencies: ffmpeg | |
- name: Set up Javascript environment | |
uses: ./.github/actions/setup-javascript | |
- name: Setup Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: ${{ matrix.elasticsearch-version }} | |
plugins: analysis-kuromoji analysis-icu | |
security-enabled: false | |
- name: Load database schema | |
run: './bin/rails db:create db:schema:load db:seed' | |
- run: bin/rspec --tag search | |
- name: Archive logs | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-search-logs-${{ matrix.ruby-version }} | |
path: log/ | |
- name: Archive test screenshots | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-search-screenshots | |
path: tmp/capybara/ |