[API] Generates e7c19dcd3aa9fd34b15509f0453af0e4756ea080 #21
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: 9.3 | |
| on: | |
| push: | |
| branches: | |
| - 9.3 | |
| pull_request: | |
| branches: | |
| - 9.3 | |
| jobs: | |
| test: | |
| env: | |
| TEST_ES_SERVER: http://localhost:9250 | |
| PORT: 9250 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ['3.2', '3.3', '3.4', '4.0', 'jruby-9.3', 'jruby-9.4', 'jruby-10.0'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.3.0 | |
| with: | |
| persist-credentials: false | |
| - name: Increase system limits | |
| run: | | |
| sudo swapoff -a | |
| sudo sysctl -w vm.swappiness=1 | |
| sudo sysctl -w fs.file-max=262144 | |
| sudo sysctl -w vm.max_map_count=262144 | |
| - uses: elastic/elastic-github-actions/elasticsearch@master | |
| with: | |
| stack-version: 9.3.1-SNAPSHOT | |
| - uses: ruby/setup-ruby@v1.279.0 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Build | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libcurl4-openssl-dev | |
| rake bundle:clean | |
| rake bundle:install | |
| - name: elasticsearch | |
| run: cd elasticsearch && bundle exec rake test:all | |
| - name: elasticsearch-api | |
| run: rake es:download_artifacts[9.3.1-SNAPSHOT] && cd elasticsearch-api && bundle exec rake test:all |