Fixes to support OTP 24..26 and Elixir 1.13..1.15 #92
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'github_actions' | |
- 'master' | |
jobs: | |
test: | |
name: OTP ${{ matrix.otp_version }} | |
runs-on: ubuntu-latest | |
container: erlang:${{ matrix.otp_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- otp_version: 26 | |
# hdr_histogram NIF requires the below PR to be merged to build on OTP 26 | |
# https://github.com/HdrHistogram/hdr_histogram_erl/pull/44 | |
erl_hist: true | |
- otp_version: 25 | |
- otp_version: 24 | |
- otp_version: 23 | |
- otp_version: 22 | |
- otp_version: 21 | |
send_coverage: true | |
run_dialyzer: true | |
build_docs: true | |
- otp_version: 20 | |
- otp_version: 19 | |
- otp_version: 19 | |
erl_hist: true | |
- otp_version: 18 | |
# old_rebar fails with "Package not found in registry: {<<"hdr_histogram">>,<<"0.5.0">>}." | |
# with hdr_histogram NIF: xprof_core_hist_SUITE: Segmentation fault (core dumped) | |
erl_hist: true | |
old_cowboy: true | |
steps: | |
- uses: actions/checkout@v3 | |
- if: matrix.old_rebar | |
run: echo "REBAR3=./rebar3" >> $GITHUB_ENV | |
- if: matrix.erl_hist | |
run: echo "XPROF_ERL_HIST=true" >> $GITHUB_ENV | |
- if: matrix.old_cowboy | |
run: echo "COWBOY_VERSION=1.1.2" >> $GITHUB_ENV | |
- name: Cache hex packages | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/.cache/rebar3 | |
key: ${{ matrix.otp_version }}-rebar3-cache | |
- run: make test | |
- if: matrix.run_dialyzer | |
run: make dialyzer | |
timeout-minutes: 8 | |
- if: matrix.build_docs | |
run: make doc | |
- if: matrix.send_coverage && success() | |
run: ./rebar3 as test coveralls send | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true | |
test_json_lib: | |
name: Test different json lib (${{ matrix.json_lib }} | OTP ${{ matrix.otp_version }}) | |
runs-on: ubuntu-latest | |
container: erlang:${{ matrix.otp_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
otp_version: [19, 21] | |
json_lib: [jiffy, jsx, thoas] | |
include: | |
- otp_version: 19 | |
old_cowboy: true | |
# thoas requires OTP 21+ | |
- otp_version: 19 | |
json_lib: thoas | |
skip: true | |
# fails with "Package not found in registry: jiffy-1.1.0." | |
#- otp_version: 18 | |
# old_rebar: true | |
# old_cowboy: true | |
steps: | |
- uses: actions/checkout@v3 | |
- if: matrix.old_rebar | |
run: echo "REBAR3=./rebar3" >> $GITHUB_ENV | |
- if: matrix.old_cowboy | |
run: echo "COWBOY_VERSION=1.1.2" >> $GITHUB_ENV | |
- name: Cache hex packages | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/.cache/rebar3 | |
key: ${{ matrix.otp_version }}-rebar3-cache-json-lib | |
- if: ${{ !matrix.skip }} | |
run: make test_${{ matrix.json_lib }} | |
test_elixir: | |
name: Test with Elixir (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp_version}}) | |
runs-on: ubuntu-18.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: 1.4.x | |
otp_version: 18 | |
rebar3: '3.7.4' | |
old_cowboy: true | |
# with hdr_histogram NIF: xprof_core_hist_SUITE: Segmentation fault (core dumped) | |
erl_hist: true | |
- elixir: 1.5.x | |
otp_version: 18 | |
rebar3: '3.7.4' | |
old_cowboy: true | |
erl_hist: true | |
- elixir: 1.6.x | |
otp_version: 19 | |
rebar3: '3.15.2' | |
- elixir: 1.7.x | |
otp_version: 19 | |
rebar3: '3.15.2' | |
- elixir: 1.8.x | |
otp_version: 20 | |
rebar3: '3.15.2' | |
- elixir: 1.9.x | |
otp_version: 20 | |
rebar3: '3.15.2' | |
- elixir: 1.10.x | |
otp_version: 21 | |
rebar3: '3.15.2' | |
- elixir: 1.11.x | |
otp_version: 22 | |
rebar3: '3.18.0' | |
- elixir: 1.12.x | |
otp_version: 23 | |
rebar3: '3.19.0' | |
- elixir: 1.13.x | |
otp_version: 24 | |
rebar3: '3.20.0' | |
- elixir: 1.14.x | |
otp_version: 25 | |
rebar3: '3.21.0' | |
- elixir: 1.15.x | |
otp_version: 26 | |
rebar3: '3.22.1' | |
# hdr_histogram NIF requires the below PR to be merged to build on OTP 26 | |
# https://github.com/HdrHistogram/hdr_histogram_erl/pull/44 | |
erl_hist: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp_version}} | |
elixir-version: ${{matrix.elixir}} | |
rebar3-version: ${{matrix.rebar3}} | |
- if: matrix.old_rebar | |
run: echo "REBAR3=./rebar3" >> $GITHUB_ENV | |
- if: matrix.erl_hist | |
run: echo "XPROF_ERL_HIST=true" >> $GITHUB_ENV | |
- if: matrix.old_cowboy | |
run: echo "COWBOY_VERSION=1.1.2" >> $GITHUB_ENV | |
- name: Cache hex packages | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/.cache/rebar3 | |
key: ${{ matrix.otp_version }}-rebar3-cache | |
- run: make test | |
test_front_end: | |
name: Test front-end | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '8' | |
- name: Cache build artifacts | |
uses: actions/cache@v3 | |
with: | |
path: apps/xprof_gui/priv/node_modules | |
key: test_front_end | |
- run: make bootstrap_front_end | |
- run: make test_front_end |