Set IDOR protection enabled on context #97
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: 📊 Benchmarks | |
| on: | |
| - push | |
| - workflow_call | |
| permissions: | |
| contents: read | |
| jobs: | |
| bench: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| name: Ruby ${{ matrix.ruby }}, ${{ matrix.app }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: [ "3.3", "3.2", "3.1", "3.0", "2.7" ] | |
| app: [ "rails7.1_benchmark" ] | |
| exclude: | |
| - ruby: "2.7" | |
| app: "rails7.1_benchmark" | |
| env: | |
| BUNDLE_GEMFILE: ${{ github.workspace }}/sample_apps/${{ matrix.app }}/Gemfile | |
| DATABASE_URL: "sqlite3:storage/test.sqlite3" | |
| BENCHMARK_NUMBER_OF_THREADS: 12 | |
| BENCHMARK_WRK_CONNECTIONS: 200 | |
| WEB_CONCURRENCY: 3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up the correct Gemfile for Ruby ${{ matrix.ruby }} | |
| run: bin/link_gemfile "${{ matrix.ruby }}" | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@a4effe49ee8ee5b8b5091268c473a4628afb5651 # v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Install system dependencies | |
| run: | | |
| sudo gpg -k | |
| sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69 | |
| echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list | |
| sudo apt-get update | |
| sudo apt-get install -y k6 wrk | |
| - name: Remove the in-repo database config | |
| run: rm -f ${{ github.workspace }}/sample_apps/${{ matrix.app }}/config/database.yml | |
| - name: Download libzen | |
| run: "bundle exec rake libzen:download:current" | |
| - name: Run the benchmarks (maximum 3 attempts) | |
| uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 | |
| with: | |
| timeout_minutes: 20 | |
| max_attempts: 3 | |
| command: | | |
| bundle exec rake bench:${{ matrix.app }}:wrk_run |