Merge pull request #129 from Peefy/add-google-analytics-plugin #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: script-kcl | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check-macos: | |
strategy: | |
matrix: | |
os: [macos-11, macos-12, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Install Script | |
run: static/script/install.sh | |
- name: Check KCL run | |
shell: bash -leo pipefail {0} | |
run: sudo kcl ./static/stack/main.k | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: "1.19" | |
- name: Check Python Installation | |
run: python3 -m pip install kclvm --user -U && python3 -m kclvm ./static/stack/main.k | |
- name: Check Go Installation | |
run: go install kcl-lang.io/kcl-go/cmds/kcl-go@main && sudo $HOME/go/bin/kcl-go run ./static/stack/main.k | |
check-linux: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Install Script | |
run: static/script/install.sh | |
- name: Check KCL run | |
shell: bash -ieo pipefail {0} | |
run: | | |
kcl ./static/stack/main.k | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: "1.19" | |
- name: Check Python Installation | |
run: python3 -m pip install kclvm --user -U && python3 -m kclvm ./static/stack/main.k | |
- name: Check Go Installation | |
run: go install kcl-lang.io/kcl-go/cmds/kcl-go@main && $HOME/go/bin/kcl-go run ./static/stack/main.k | |
check-windows: | |
strategy: | |
matrix: | |
goversion: [1.17, 1.18] | |
pyversion: ['3.9', '3.10'] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Install Script | |
run: static/script/install.ps1 | |
- name: Check KCL run | |
run: C:\kclvm\bin\kcl.exe ./static/stack/main.k | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.pyversion }} | |
- name: Check Python Installation | |
run: python3 -m pip install kclvm --user -U && python3 -m kclvm ./static/stack/main.k | |
- name: Check Go Installation | |
run: go install kcl-lang.io/kcl-go/cmds/kcl-go@main && C:\Users\runneradmin\go\bin\kcl-go.exe run ./static/stack/main.k | |
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 ./static/stack/main.k | |
check-kcl-brew-install-macos: | |
strategy: | |
matrix: | |
os: [macos-11, macos-12, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Brew Installation | |
working-directory: . | |
run: | | |
brew install kcl-lang/tap/kcl | |
echo "brew installed successfully" | |
kcl ./static/stack/main.k | |
kclvm_cli run ./static/stack/main.k | |
check-kcl-brew-install-linux: | |
runs-on: ubuntu-latest | |
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 ./static/stack/main.k |