File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11name : Container
22
33on :
4+ pull_request : # 当有 PR 指向 develop 分支时触发
5+ branches :
6+ - develop
47 push :
58 branches :
69 - develop
5457 tags : ${{ steps.meta.outputs.tags }}
5558 labels : ${{ steps.meta.outputs.labels }}
5659 file : Dockerfile.${{ matrix.dockerfile }}
57- push : true
60+ # 只有在 develop 分支或打标签时才推送,PR时不推送
61+ push : ${{ github.event_name != 'pull_request' }}
5862 cache-from : type=registry,ref=ghcr.io/deepmodeling/abacus-${{ matrix.dockerfile }}:latest
5963 cache-to : type=inline
Original file line number Diff line number Diff line change 44# MKL_INCLUDE - where to find mkl.h, etc.
55# MKL_FOUND - True if mkl found.
66
7- find_package (MKL NO_MODULE) # try using official module first
7+ # find_package(MKL NO_MODULE) # try using official module first
88if (NOT TARGET MKL::MKL)
99
1010find_path (MKL_INCLUDE mkl_service.h HINTS ${MKLROOT} /include )
You can’t perform that action at this time.
0 commit comments