-
Notifications
You must be signed in to change notification settings - Fork 9
33 lines (31 loc) · 803 Bytes
/
ci.yml
File metadata and controls
33 lines (31 loc) · 803 Bytes
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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/erlide_tools
~/.kerl
key: ${{ runner.os }}-otp-${{ hashFiles('build_utils.sh') }}
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
- name: Build
run: ./build
- name: Test
run: ./build test
- name: Dialyzer
continue-on-error: true # Until problems are fixed
run: ./build dialyzer
- name: Xref
continue-on-error: true # Until problems are fixed
run: ./build xref
- name: Build zip archive for Eclipse
run: cd eclipse && ./build