chore: bump kcl lib version to v0.9.2 #160
Workflow file for this run
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: Build and Test on centos7 amd64 | |
on: ["push", "pull_request"] | |
jobs: | |
build-and-test-centos7: | |
name: Build and Test on centos7 amd64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/amd64 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Pull custom centos7 Docker image | |
run: | | |
docker pull kcllang/kcl-builder:centos7 | |
# Use llvm7 to build kcl in centos7 | |
- name: Release | |
run: | | |
docker run --rm \ | |
-v ${{ github.workspace }}:/workspace -w /workspace \ | |
kcllang/kcl-builder:centos7 \ | |
/bin/bash -c "source ~/.bash_profile && export PATH=$PATH:/opt/build/bin/ && sed -i 's/llvm12/llvm7/g' kclvm/compiler/Cargo.toml && make && make release" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kcl-centos7-amd64 | |
if-no-files-found: error | |
path: _build/kclvm-centos-latest.tar.gz |