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.
ci: add daily binary and docker image scripts.
- Loading branch information
Showing
1 changed file
with
137 additions
and
0 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,137 @@ | ||
name: Daily Release CI | ||
|
||
# on: | ||
# schedule: | ||
# - cron: '0 0 * * *' | ||
|
||
on: ["push", "pull_request"] | ||
|
||
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.67 | ||
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 python3 python3-pip -y | ||
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.67 | ||
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/kcl | ||
- 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.bat | ||
|
||
- 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 |