-
Notifications
You must be signed in to change notification settings - Fork 34
107 lines (91 loc) · 3.41 KB
/
install-kcl.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
107
name: script-kcl
on:
push:
branches:
- main
jobs:
check-macos:
strategy:
matrix:
os: [macos-12, macos-13, macos-13-xlarge, macos-14, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Check Install Script CLI
run: curl -fsSL https://kcl-lang.io/script/install-cli.sh | /bin/bash
- name: Check KCL run
shell: bash -leo pipefail {0}
run: sudo kcl version && sudo kcl run ./examples/configuration/nginx.k
- uses: actions/setup-go@v1
with:
go-version: "1.22"
- name: Check Go Installation
run: go install kcl-lang.io/cli/cmd/kcl@main && sudo $HOME/go/bin/kcl version && sudo $HOME/go/bin/kcl run ./examples/configuration/nginx.k
- name: Check Uninstall Script CLI
run: curl -fsSL https://kcl-lang.io/script/uninstall-cli.sh | /bin/bash
check-linux:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Check Install Script CLI
run: wget -q https://kcl-lang.io/script/install-cli.sh -O - | /bin/bash
- name: Check KCL run
shell: bash -ieo pipefail {0}
run: |
kcl version
kcl run ./examples/configuration/nginx.k
- uses: actions/setup-go@v1
with:
go-version: "1.22"
- name: Check Go Installation
run: go install kcl-lang.io/cli/cmd/kcl@main && sudo $HOME/go/bin/kcl version && sudo $HOME/go/bin/kcl run ./examples/configuration/nginx.k
- name: Check Uninstall Script CLI
run: wget -q https://kcl-lang.io/script/uninstall-cli.sh -O - | /bin/bash
check-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Check Install Script CLI
run: powershell -Command "iwr -useb https://www.kcl-lang.io/script/install-cli.ps1 | iex"
- name: Check KCL run
run: C:\kclvm\bin\kcl.exe run ./examples/configuration/nginx.k
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.22"
- name: Check Go Installation
run: go install kcl-lang.io/cli/cmd/kcl@main && C:\Users\runneradmin\go\bin\kcl.exe run ./examples/configuration/nginx.k
- name: Check Uninstall Script CLI
run: powershell -Command "iwr -useb https://www.kcl-lang.io/script/uninstall-cli.ps1 | iex"
check-kcl-scoop-install:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Check Scoop Install
shell: powershell
run: |
iwr -useb get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin
scoop bucket add kcl-lang https://github.com/kcl-lang/scoop-bucket.git
scoop install kcl-lang/kcl
kcl.exe ./examples/configuration/nginx.k
check-kcl-brew-install:
strategy:
matrix:
os: [macos-12, macos-13, macos-latest, ubuntu-20.04, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Homebrew/actions/setup-homebrew@master
- name: Check Brew Installation
working-directory: .
run: |
brew install kcl-lang/tap/kcl
echo "brew installed successfully"
kcl version
kcl ./examples/configuration/nginx.k
brew uninstall kcl-lang/tap/kcl
brew uninstall kcl-lang/tap/kcl-lsp