forked from kcl-lang/kcl
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Peefy/chore-semantic-ai
Chore semantic ai
- Loading branch information
Showing
1,701 changed files
with
83,479 additions
and
26,710 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Backport merged pull request | ||
on: | ||
pull_request_target: | ||
types: [closed] | ||
permissions: | ||
contents: write # so it can comment | ||
pull-requests: write # so it can create pull requests | ||
jobs: | ||
backport: | ||
name: Backport pull request | ||
runs-on: ubuntu-latest | ||
# Don't run on closed unmerged pull requests | ||
if: github.event.pull_request.merged | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Create backport pull requests | ||
uses: korthout/backport-action@v1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Build and Test on Linux ARCH64 | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-and-test-arm64: | ||
name: Build and Test on Linux ARM64 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: "true" | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Install prerequisites | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y git wget curl make python3 python3-pip clang-12 lld-12 | ||
sudo ln -sf /usr/bin/clang-12 /usr/bin/clang | ||
- name: Install rust nightly toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.76 | ||
override: true | ||
components: clippy, rustfmt | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Pull custom ARM64 Docker image | ||
run: | | ||
docker pull --platform linux/arm64 kcllang/kcl-builder-arm64 | ||
- name: Run custom ARM64 Docker image | ||
run: | | ||
docker run --rm --platform linux/arm64 \ | ||
-v ${{ github.workspace }}:/workspace -w /workspace \ | ||
kcllang/kcl-builder-arm64 \ | ||
make && make release | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: kcl-linux-arm64 | ||
path: _build/dist/ubuntu/kclvm |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Build and Test on MacOS ARCH64 | ||
|
||
on: ["push", "pull_request"] | ||
jobs: | ||
build-and-test: | ||
# Ref: https://github.com/actions/runner-images/tree/main/images/macos | ||
strategy: | ||
matrix: | ||
os: [macos-13-xlarge] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: "true" | ||
|
||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21 | ||
|
||
- run: clang --version | ||
- run: cargo --version | ||
- run: rustc --print sysroot | ||
|
||
- name: Delete rust cargo | ||
run: rm -rf /root/.cargo/bin | ||
shell: bash | ||
- name: Install LLVM 12 | ||
run: brew install llvm@12 | ||
shell: bash | ||
- name: Install rust nightly toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.76 | ||
override: true | ||
components: clippy, rustfmt | ||
- name: Grammar test | ||
working-directory: ./kclvm | ||
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/opt/homebrew/opt/llvm@12/bin/ && make && make test-grammar | ||
shell: bash | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: kcl-darwin-arm64 | ||
path: _build/dist/Darwin/kclvm |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
name: Daily Release CI | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
macos-release: | ||
name: Build and release on macos | ||
runs-on: macos-11 | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: "true" | ||
|
||
- run: clang --version | ||
- run: cargo --version | ||
- run: rustc --print sysroot | ||
|
||
- name: Delete rust cargo | ||
run: rm -rf /root/.cargo/bin | ||
shell: bash | ||
- name: Install LLVM 12 | ||
run: brew install llvm@12 | ||
shell: bash | ||
- name: Install rust nightly toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.76 | ||
override: true | ||
components: clippy, rustfmt | ||
|
||
- name: Build KCL | ||
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make build | ||
shell: bash | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: kcl-darwin-amd64-nightly | ||
path: _build/dist/Darwin/kclvm | ||
|
||
linux-release: | ||
name: Build and release on linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: "true" | ||
|
||
# Prerequisite | ||
|
||
- name: Install LLVM | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y git wget curl make | ||
sudo apt-get install -y clang-12 lld-12 | ||
sudo ln -sf /usr/bin/clang-12 /usr/bin/clang | ||
- name: Install Rust Toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.76 | ||
override: true | ||
components: clippy, rustfmt | ||
|
||
- name: Build KCL | ||
run: make build | ||
shell: bash | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: kcl-linux-amd64-nightly | ||
path: _build/dist/ubuntu/kclvm | ||
|
||
- name: Copy Dockerfile to the current work directory | ||
run: cp scripts/docker/kcl/Dockerfile . | ||
shell: bash | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: kcllang/kclvm | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
windows-release: | ||
name: Build and release on windows | ||
runs-on: windows-latest | ||
env: | ||
LLVM_SYS_120_PREFIX: "C:/LLVM" | ||
KCLVM_CLANG: "C:/LLVM/bin/clang.exe" | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: "true" | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- run: clang --version | ||
- run: cargo --version | ||
|
||
# Install LLVM-12 | ||
- run: Invoke-WebRequest -Uri https://github.com/kcl-lang/llvm-package-windows/releases/download/v12.0.1/LLVM-12.0.1-win64.7z -OutFile C:/LLVM-12.0.1-win64.7z | ||
- run: Get-FileHash -Algorithm MD5 C:/LLVM-12.0.1-win64.7z # md5: 3fcf77f82c6c3ee650711439b20aebe5 | ||
- run: 7z x -y C:/LLVM-12.0.1-win64.7z -o"C:/LLVM" | ||
- run: Remove-Item C:/LLVM-12.0.1-win64.7z | ||
|
||
- run: echo "C:/LLVM/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
|
||
- run: .\scripts\build-windows\build.ps1 | ||
|
||
- run: echo ";$(pwd)\scripts\build-windows\_output\kclvm-windows\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
working-directory: . | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: kcl-windows-nightly | ||
path: scripts/build-windows/_output/kclvm-windows |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.