format #1442
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: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
# Quick smoke test with latest versions | |
smoke_test_language_server: | |
name: Smoke test language server (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}) | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- elixir: 1.18.x | |
otp: 27.x | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}- | |
- name: Install Dependencies | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get --only test | |
- run: | | |
cd apps/elixir_ls_utils | |
mix test | |
- run: | | |
cd apps/language_server | |
mix test | |
smoke_test_debug_adapter: | |
name: Smoke test debug adapter (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}) | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- elixir: 1.18.x | |
otp: 27.x | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}- | |
- name: Install Dependencies | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get --only test | |
- run: | | |
cd apps/elixir_ls_utils | |
mix test | |
- run: | | |
cd apps/debug_adapter | |
mix test | |
# Core compatibility matrix - test minimum, LTS, and latest versions | |
compatibility_test: | |
name: Compatibility test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}} | ${{matrix.os}}) | |
runs-on: ${{matrix.os}} | |
needs: [smoke_test_language_server, smoke_test_debug_adapter] # Only run if smoke test passes | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Minimum supported versions | |
- elixir: 1.14.x | |
otp: 24.x | |
os: ubuntu-22.04 | |
- elixir: 1.14.x | |
otp: 24.x | |
os: windows-2022 | |
# Middle versions | |
- elixir: 1.16.x | |
otp: 26.x | |
os: ubuntu-22.04 | |
- elixir: 1.16.x | |
otp: 26.x | |
os: windows-2022 | |
# Latest versions | |
# covered by smoke_test | |
# - elixir: 1.18.x | |
# otp: 27.x | |
# os: ubuntu-22.04 | |
- elixir: 1.18.x | |
otp: 27.x | |
os: windows-2022 | |
env: | |
MIX_ENV: test | |
steps: | |
- name: Set git to use original line ending (Windows) | |
if: runner.os == 'Windows' | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}- | |
- name: Install Dependencies | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get --only test | |
- run: mix test | |
# Comprehensive matrix - only run on master branch or when specifically requested | |
comprehensive_test: | |
name: Comprehensive test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}) | |
runs-on: ubuntu-22.04 | |
if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'comprehensive-tests') | |
needs: compatibility_test | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# covered by compatibility_test | |
# - elixir: 1.14.x | |
# otp: 24.x | |
- elixir: 1.14.x | |
otp: 25.x | |
- elixir: 1.14.x | |
otp: 26.x | |
- elixir: 1.15.x | |
otp: 24.x | |
- elixir: 1.15.x | |
otp: 25.x | |
- elixir: 1.15.x | |
otp: 26.x | |
- elixir: 1.16.x | |
otp: 24.x | |
- elixir: 1.16.x | |
otp: 25.x | |
# covered by compatibility_test | |
# - elixir: 1.16.x | |
# otp: 26.x | |
- elixir: 1.17.x | |
otp: 25.x | |
- elixir: 1.17.x | |
otp: 26.x | |
- elixir: 1.17.x | |
otp: 27.x | |
- elixir: 1.18.x | |
otp: 25.x | |
- elixir: 1.18.x | |
otp: 26.x | |
# covered by smoke_test | |
# - elixir: 1.18.x | |
# otp: 27.x | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}- | |
- name: Install Dependencies | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get --only test | |
- run: mix test | |
static_analysis: | |
name: Static analysis | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 27.x | |
elixir-version: 1.18.x | |
- name: Cache build artifacts | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.hex | |
~/.mix | |
_build | |
deps | |
key: static-analysis-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
static-analysis- | |
- name: Install Dependencies | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get | |
- name: Restore timestamps to prevent unnecessary recompilation | |
run: IFS=$'\n'; for f in $(git ls-files); do touch -d "$(git log -n 1 --pretty='%cI' -- $f)" "$f"; done | |
- run: MIX_ENV=test mix format --check-formatted | |
- run: cd apps/language_server && MIX_ENV=test mix format --check-formatted | |
# TODO reenable | |
# - run: mix dialyzer_vendored |