-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (61 loc) · 1.47 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
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
install:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Java JDK
uses: actions/[email protected]
with:
distribution: oracle
java-version: 17
- name: Print diagnostics
run: |
echo $PATH
echo ~
shell: bash
- name: Adjust $PATH (Windows only)
run: |
echo "~/.local/bin" >> $GITHUB_PATH
shell: bash
if: ${{ matrix.platform == 'windows-latest' }}
- name: Check out the repository
uses: actions/checkout@v3
- name: Install nightly all
run: |
bash install.sh nightly all
lfc --version
lfd --version
lff --version
which epoch
shell: bash
- name: Install stable all
run: |
bash install.sh stable all
lfc --version
lfd --version
lff --version
which epoch
shell: bash
- name: Install epoch cli
run: |
bash install.sh epoch cli
lfc --version
lfd --version
lff --version
which epoch
shell: bash
- name: Install specific version of cli
run: |
bash install.sh cli v0.8.1
lfc --version
lfd --version
lff --version
shell: bash