This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
add tests and nodes #3
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: Bestla Unit Test | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- bestla/**" | |
- .github/workflows/unit-test-bestla.yml | |
- '!bestla/README.md' | |
workflow_dispatch: | |
inputs: | |
compiler_version: | |
description: 'compiler_version' | |
required: false | |
type: string | |
default: '13.1.0' | |
# If there is a new commit, the previous jobs will be canceled | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
INPUT_COMPILER_VERSION: ${{ inputs.compiler_version || '13.1.0' }} | |
jobs: | |
unit-test: | |
runs-on: [self-hosted, linux, X64, spr] | |
steps: | |
- name: Checkout out Repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
fetch-tags: true | |
- name: Env build | |
run: | | |
bash ${{ github.workspace }}/.github/workflows/scripts/prepare_env_with_conda.sh "unit-test-bestla" "3.8" | |
conda activate unit-test-bestla || source activate unit-test-bestla | |
if [[ "${{ env.INPUT_COMPILER_VERSION }}" != "11.4.1" ]]; then | |
conda install --update-deps -c conda-forge gxx==${{ env.INPUT_COMPILER_VERSION }} gcc==${{ env.INPUT_COMPILER_VERSION }} gxx_linux-64==${{ env.INPUT_COMPILER_VERSION }} libstdcxx-ng sysroot_linux-64 -y | |
fi | |
- name: Run UT | |
run: | | |
conda activate unit-test-bestla || source activate unit-test-bestla | |
cd ${{ github.workspace }}/bestla && mkdir build && cd build && cmake .. -DBTLA_UT_ALL=ON && make -j | |
./bestla_ut 2>&1 | tee unit_test_bestla.log | |
- name: Check Result | |
run: | | |
if [[ $(grep -c "Case Failed" ${{ github.workspace }}/bestla/build/unit_test_bestla.log) != 0 ]]; then | |
echo "UT Failed! Please check UT log." | |
exit 1 | |
fi | |
- name: Publish pipeline artifact | |
uses: actions/upload-artifact@v3 | |
if: ${{ !cancelled() }} | |
with: | |
name: Bestla Unit Test | |
path: ${{ github.workspace }}/bestla/build/unit_test*.* |