Skip to content

[ci] move llvm_path to prepare.sh, remove environment, add daily ci #99

[ci] move llvm_path to prepare.sh, remove environment, add daily ci

[ci] move llvm_path to prepare.sh, remove environment, add daily ci #99

Workflow file for this run

name: e2e Numerical test CI
on:
push:
branches:
- main
paths-ignore:
- "frontends/onnx-frontend/**"
- "frontends/tf-frontend/**"
- "scripts/frontends/onnx-frontend/**"
- "scripts/frontends/tf-frontend/**"
pull_request:
branches:
- main
paths-ignore:
- "frontends/onnx-frontend/**"
- "frontends/tf-frontend/**"
- "scripts/frontends/onnx-frontend/**"
- "scripts/frontends/tf-frontend/**"
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:
numerical_e2e_test:
name: e2e CI
runs-on: self-hosted
steps:
- name: clear workspace
run: rm -rf $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
- name: Checkout byteir repo
uses: actions/checkout@v3
- name: Build and test e2e
run: ./scripts/e2e/build_and_test_e2e.sh
shell: bash