feat: find right value def from schema mixin and protocol (#1632) #407
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 Linux ARCH64 | |
on: ["push", "pull_request"] | |
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 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: Build in Docker | |
run: | | |
docker run --rm --platform linux/arm64 \ | |
-v ${{ github.workspace }}:/workspace -w /workspace \ | |
kcllang/kcl-builder-arm64 \ | |
/bin/bash -c "export KCL_BUILD_GIT_SHA=$(git rev-parse HEAD) && git config --global --add safe.directory /workspace && git config --global user.name 'GitHub Action' && git config --global user.email '[email protected]' && make && make release && _build/dist/ubuntu/kclvm/bin/kclvm_cli version" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kcl-linux-arm64 | |
if-no-files-found: error | |
path: _build/kclvm-ubuntu-latest.tar.gz |