Skip to content

[compiler] attach attr to shape func #58

[compiler] attach attr to shape func

[compiler] attach attr to shape func #58

Workflow file for this run

name: Compiler Build
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/compiler-ci.yaml"
- "compiler/**"
- "scripts/**"
- "!**/**.md"
- "!compiler/python/version.txt"
workflow_dispatch:
# Ensure that only a single job or workflow using the same
# concurrency group will run at a time. This would cancel
# any in-progress jobs in the same github workflow and github
# ref (e.g. refs/heads/main or refs/pull/<pr_number>/merge).
concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
jobs:
byteir_compiler_build_and_test:
name: byteir compiler build and test
runs-on: self-hosted
container:
image: localhost:5000/byteir-ci
volumes:
- /data00/llvm_libraries:/data00/llvm_libraries
- /data00/mhlo_libraries:/data00/mhlo_libraries
- /data00/external_libraries:/data00/external_libraries
options: --runtime=nvidia --gpus all
steps:
- name: clear workspace
run: rm -rf $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
- name: Checkout byteir repo
uses: actions/checkout@v3
- name: Run build and test
run: ./scripts/compiler/build_and_test.sh
shell: bash
- name: Run E2E testcases and check different
run: ./compiler/scripts/gen_testcases_and_check_diff.sh
shell: bash