-
Notifications
You must be signed in to change notification settings - Fork 118
64 lines (62 loc) · 2.15 KB
/
ubuntu_test.yaml
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
name: build-and-test-ubuntu
on: ["push", "pull_request"]
jobs:
build-and-test:
# Ref: https://github.com/actions/runner-images/tree/main/images/linux
name: Test
runs-on: ubuntu-latest
container:
image: kcllang/kcl-builder
steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: "true"
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Delete rust cargo
run: rm -rf /root/.cargo/bin
shell: bash
- name: Install rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67
override: true
components: clippy, rustfmt
- name: Code format check
working-directory: ./kclvm
run: cargo fmt --check
shell: bash
- name: Code clippy check
working-directory: ./kclvm
run: cargo clippy --no-deps -r
shell: bash
- name: Grammar test
working-directory: ./kclvm
run: export PATH=$PATH:$PWD/../_build/dist/ubuntu/kclvm/bin && make install-rustc-wasm && make && make test-grammar
shell: bash
- name: Runtime test
working-directory: ./kclvm
run: export PATH=$PATH:$PWD/../_build/dist/ubuntu/kclvm/bin && make install-rustc-wasm && make && make test-runtime
shell: bash
- name: Install kpm
run: go install kcl-lang.io/kpm@latest
- name: Unit test
working-directory: ./kclvm
run: export PATH=$PATH:$PWD/../_build/dist/ubuntu/kclvm/bin && make install-rustc-wasm && make && make codecov-lcov
shell: bash
- name: Konfig test
working-directory: ./kclvm
run: export PATH=$PATH:$PWD/../_build/dist/ubuntu/kclvm/bin && make install-rustc-wasm && make && make test-konfig
shell: bash
- name: Coveralls upload
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./kclvm/.kclvm_cov/lcov.info
- uses: actions/upload-artifact@v3
with:
name: kcl-linux-amd64
path: _build/dist/ubuntu/kclvm