-
Notifications
You must be signed in to change notification settings - Fork 598
43 lines (43 loc) · 1.19 KB
/
8.13.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: 8.13
on:
push:
branches:
- 8.13
pull_request:
branches:
- 8.13
jobs:
test:
env:
TEST_ES_SERVER: http://localhost:9250
PORT: 9250
strategy:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2', '3.3', 'jruby-9.3', 'jruby-9.4' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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: 8.13.5-SNAPSHOT
security-enabled: false
- uses: ruby/setup-ruby@v1
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 elasticsearch:download_artifacts[8.13.5-SNAPSHOT] && cd elasticsearch-api && bundle exec rake test:spec test:platinum:unit