This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
migrate codes from itrex #5
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: LLM Runtime Unit Test | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- neural_speed/** | |
- tests/** | |
- .github/workflows/unit-test-llmruntime.yml | |
- .github/workflows/script/unitTest/** | |
workflow_dispatch: | |
# 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: | |
DOCKER_CONFIG_NAME: "commonDockerConfig" | |
REPO_NAME: "neural-speed" | |
REPO_TAG: "py38" | |
DOCKER_FILE_NAME: "devel" | |
CONTAINER_NAME: "utTest" | |
EXTRA_CONTAINER_NAME: "modelTest" | |
jobs: | |
unit-test: | |
runs-on: [self-hosted, linux, X64, neuralspeed-node] | |
steps: | |
- name: Load environment variables | |
run: cat ~/actions-runner2/.env >> $GITHUB_ENV | |
- name: Docker Clean Up | |
run: | | |
docker ps -a | |
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | |
docker start ${{ env.CONTAINER_NAME }} | |
echo "remove left files through container ..." | |
docker exec ${{ env.CONTAINER_NAME }} bash -c "ls -a /neural-speed && rm -fr /neural-speed/* && rm -fr /neural-speed/.* || true" | |
fi | |
if [[ $(docker ps -a | grep -i '${{ env.EXTRA_CONTAINER_NAME }}'$) ]]; then | |
docker start ${{ env.EXTRA_CONTAINER_NAME }} | |
echo "remove left files through container ..." | |
docker exec ${{ env.EXTRA_CONTAINER_NAME }} bash -c "ls -a /neural-speed && rm -fr /neural-speed/* && rm -fr /neural-speed/.* || true" | |
fi | |
- name: Checkout out Repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
fetch-tags: true | |
- name: Docker Build | |
run: | | |
docker build -f ${{ github.workspace }}/.github/workflows/docker/${{ env.DOCKER_FILE_NAME }}.dockerfile --build-arg http_proxy="${{ env.HTTP_PROXY }}" --build-arg https_proxy="${{ env.HTTPS_PROXY }}" -t ${{ env.REPO_NAME }}:${{ env.REPO_TAG }} . | |
- name: Docker Run | |
run: | | |
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | |
docker stop ${{ env.CONTAINER_NAME }} | |
docker rm -vf ${{ env.CONTAINER_NAME }} || true | |
fi | |
docker run -dit --disable-content-trust --privileged --name=${{ env.CONTAINER_NAME }} -v /dev/shm:/dev/shm \ | |
-e http_proxy="${{ env.HTTP_PROXY }}" \ | |
-e https_proxy="${{ env.HTTPS_PROXY }}" \ | |
-v ${{ github.workspace }}:/neural-speed \ | |
-v /tf_dataset2:/tf_dataset2 \ | |
-v ~/.cache/oneAPI:/cache \ | |
${{ env.REPO_NAME }}:${{ env.REPO_TAG }} | |
- name: Env build | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash /neural-speed/.github/workflows/script/prepare_env.sh | |
- name: Binary build | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "cd /neural-speed/.github/workflows/script \ | |
&& bash install_binary.sh" | |
- name: Run UT | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "cd /neural-speed/.github/workflows/script/unitTest \ | |
&& bash run_unit_test_llmruntime.sh" | |
- name: Publish pipeline artifact | |
uses: actions/upload-artifact@v3 | |
if: ${{ !cancelled() }} | |
with: | |
name: LLM Runtime Unit Test | |
path: ${{ github.workspace }}/log_dir/unit_test*.* |