Skip to content

[x86][fix] fix preprocess error when channel <= CH_DT_BLK() #11

[x86][fix] fix preprocess error when channel <= CH_DT_BLK()

[x86][fix] fix preprocess error when channel <= CH_DT_BLK() #11

name: common-linux-x86_64
on:
#push:
# branches: [ master ]
# paths-ignore: ['.**', 'docker/**', 'docs/**', 'samples/**', README.md]
pull_request:
branches: [ master ]
paths:
- 'cmake/x86.cmake'
- 'include/ppl/kernel/x86/**'
- 'src/ppl/kernel/x86/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}--${{ github.head_ref || github.run_id }}--${{ github.ref }}--${{ github.event_name }}
cancel-in-progress: true
jobs:
build_and_test:
runs-on: [self-hosted, linux, dev-x86]
steps:
- name: Create Checkout Directory
run: |
echo "Create Checkout Directory: ${{ github.run_id }}."
[ -z "${{ github.run_id }}" ] || rm -rf ${{ github.run_id }}
mkdir ${{ github.run_id }}
- name: Checkout
uses: actions/checkout@v3
with:
path: ${{ github.run_id }}
- name: Build
run: |
cd ../../ && ./build.sh ${{ github.run_id }} x86_64
- name: Cleanup
if: ${{ always() }}
run: |
cd ../../ && ./cleanup.sh ${{ github.run_id }}