-
Notifications
You must be signed in to change notification settings - Fork 225
203 lines (198 loc) · 5.85 KB
/
Copy pathci.yml
File metadata and controls
203 lines (198 loc) · 5.85 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
# Smoke test on the highest supported OTP for each Elixir version
smoke_test_language_server:
name: Smoke test language server (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}})
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.16.x
otp: 26.x
- elixir: 1.17.x
otp: 27.x
- elixir: 1.18.x
otp: 27.x
- elixir: 1.19.x
otp: 28.x
- elixir: 1.20.x
otp: 29.x
steps:
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache dependencies
uses: actions/cache@v5
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:
fail-fast: false
matrix:
include:
- elixir: 1.16.x
otp: 26.x
- elixir: 1.17.x
otp: 27.x
- elixir: 1.18.x
otp: 27.x
- elixir: 1.19.x
otp: 28.x
- elixir: 1.20.x
otp: 29.x
steps:
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache dependencies
uses: actions/cache@v5
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
# Compatibility test: lowest supported OTP for each Elixir, on Linux and Windows
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]
strategy:
fail-fast: false
matrix:
include:
# Minimum OTP for each supported Elixir
- elixir: 1.16.x
otp: 26.x
os: ubuntu-22.04
- elixir: 1.16.x
otp: 26.x
os: windows-2022
- elixir: 1.17.x
otp: 26.x
os: ubuntu-22.04
- elixir: 1.17.x
otp: 26.x
os: windows-2022
- elixir: 1.18.x
otp: 26.x
os: ubuntu-22.04
- elixir: 1.18.x
otp: 26.x
os: windows-2022
- elixir: 1.19.x
otp: 26.x
os: ubuntu-22.04
- elixir: 1.19.x
otp: 26.x
os: windows-2022
- elixir: 1.20.x
otp: 27.x
os: ubuntu-22.04
- elixir: 1.20.x
otp: 27.x
os: windows-2022
# Highest OTP on Windows (Linux is covered by smoke_test)
- elixir: 1.20.x
otp: 29.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@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache dependencies
uses: actions/cache@v5
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@v6
- uses: erlef/setup-beam@v1
with:
otp-version: 29.x
elixir-version: 1.20.x
- name: Cache build artifacts
uses: actions/cache@v5
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
- name: Compile with warnings as errors
run: mix compile --force --warnings-as-errors
- run: MIX_ENV=test mix format --check-formatted
- run: cd apps/language_server && MIX_ENV=test mix format --check-formatted
- run: mix dialyzer