-
Notifications
You must be signed in to change notification settings - Fork 68
55 lines (43 loc) · 1.14 KB
/
build_test_planck.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
name: Build and Test Planck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_macos:
runs-on: macos-12
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
- name: Install Clojure
uses: DeLaGuardo/[email protected]
with:
cli: latest
- name: Build and Test Planck
run: |
script/build -Werror --fast
script/test
build_ubuntu:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
- name: Install Clojure
uses: DeLaGuardo/[email protected]
with:
cli: latest
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y libjavascriptcoregtk-4.0 libglib2.0-dev libzip-dev libcurl4-gnutls-dev libicu-dev unzip
- name: Build and Test Planck
run: |
script/build -Werror --fast
script/test