-
Notifications
You must be signed in to change notification settings - Fork 5
105 lines (86 loc) · 2.42 KB
/
ci.yml
File metadata and controls
105 lines (86 loc) · 2.42 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
name: Test
on:
pull_request:
push:
branches:
- main
- dev
paths-ignore:
- '**/README.md'
- 'LICENSE*'
jobs:
linux:
runs-on: ubuntu-20.04
env:
MIX_ENV: test
strategy:
matrix:
job:
- { otp_version: "26", elixir_version: "1.15" }
- { otp_version: "24", elixir_version: "1.13" }
name: Linux x86_64 - OTP ${{ matrix.job.otp_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.job.otp_version }}
elixir-version: ${{ matrix.job.elixir_version }}
- name: Compile and Test
run: |
mix deps.get
mix elixir_make.precompile
mix test
windows:
runs-on: windows-latest
env:
MIX_ENV: test
strategy:
matrix:
job:
- { otp_version: "26", elixir_version: "1.15" }
- { otp_version: "24", elixir_version: "1.13" }
name: Windows x86_64 - OTP ${{ matrix.job.otp_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.job.otp_version }}
elixir-version: ${{ matrix.job.elixir_version }}
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Compile and Test
shell: bash
run: |
mix deps.get
mix elixir_make.precompile
mix test
macos:
runs-on: macos-13
env:
MIX_ENV: test
ELIXIR_VERSION: "1.16.2"
OTP_VERSION: ${{ matrix.otp_version }}
strategy:
matrix:
otp_version: ["25.3.2.8", "26.2.2"]
name: macOS x86_64 - OTP ${{ matrix.otp_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OTP and Elixir
run: |
curl -fsSO https://elixir-lang.org/install.sh
sh install.sh "elixir@${ELIXIR_VERSION}" "otp@${OTP_VERSION}"
- name: Compile and Test
run: |
export OTP_MAIN_VER="${OTP_VERSION%%.*}"
export PATH=$HOME/.elixir-install/installs/otp/${OTP_VERSION}/bin:$PATH
export PATH=$HOME/.elixir-install/installs/elixir/${ELIXIR_VERSION}-otp-${OTP_MAIN_VER}/bin:$PATH
mix local.hex --force
mix local.rebar --force
mix deps.get
mix elixir_make.precompile
mix test