-
Notifications
You must be signed in to change notification settings - Fork 1
106 lines (92 loc) · 2.69 KB
/
ci.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
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
name: CI
on:
pull_request:
push:
branches:
- master
env:
MIX_ENV: test
jobs:
ci-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.14"
otp: "25.3"
zig: "0.13.0"
- pair:
elixir: "1.17"
otp: "27.0"
zig: "0.13.0"
steps:
- uses: actions/checkout@v4
- name: Generate .tool-versions file
run: |
echo "zig ${{ matrix.pair.zig }}" >> .tool-versions
echo "elixir ${{ matrix.pair.elixir }}" >> .tool-versions
echo "erlang ${{ matrix.pair.otp }}" >> .tool-versions
cp .tool-versions ~/.
cat .tool-versions
- uses: asdf-vm/actions/install@v3
- name: Install Hex package manager
run: mix local.hex --force && mix local.rebar --force
- run: mix deps.get
- uses: actions/cache@v4
with:
path: |
~/.asdf
deps
key: mix-deps-${{ hashFiles('**/mix.lock') }}-${{ matrix.pair.elixir }}-${{ matrix.pair.otp }}
- run: mix test
ci-ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.14"
otp: "25.3"
- pair:
elixir: "1.15"
otp: "26.2"
- pair:
elixir: "1.16"
otp: "26.2"
- pair:
elixir: "1.17"
otp: "27.0"
lint: lint
steps:
- uses: actions/checkout@v4
- name: Install test dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev krb5-{user,kdc,admin-server}
- name: Setup Kerberos environment and initialize configuration
run: sudo ./test/support/files/setup_kerberos.sh
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
version-type: strict
- uses: actions/cache@v4
with:
path: deps
key: mix-deps-${{ hashFiles('**/mix.lock') }}
- run: mix deps.get
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test --include kerberos:true
if: ${{ ! matrix.lint }}
- run: mix test --warnings-as-errors --include kerberos:true
if: ${{ matrix.lint }}