diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f9996e070..458c94d576 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,15 +31,19 @@ jobs: - name: Configure run: | + git config --global --add safe.directory /__w/abacus-develop/abacus-develop cmake -B build -DBUILD_TESTING=ON -DENABLE_DEEPKS=ON -DENABLE_LIBXC=ON -DENABLE_LIBRI=ON -DENABLE_PAW=ON -DENABLE_GOOGLEBENCH=ON -DENABLE_RAPIDJSON=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=1 - - uses: pre-commit/action@v3.0.1 - with: - extra_args: - --from-ref ${{ github.event.pull_request.base.sha }} - --to-ref ${{ github.event.pull_request.head.sha }} - continue-on-error: true - - uses: pre-commit-ci/lite-action@v1.0.3 +# Temporarily removed because no one maintains this now. +# And it will break the CI test workflow. + +# - uses: pre-commit/action@v3.0.1 +# with: +# extra_args: +# --from-ref ${{ github.event.pull_request.base.sha }} +# --to-ref ${{ github.event.pull_request.head.sha }} +# continue-on-error: true +# - uses: pre-commit-ci/lite-action@v1.0.3 - name: Build run: | diff --git a/toolchain/install_abacus_toolchain_new.sh b/toolchain/install_abacus_toolchain_new.sh index 888b436a9b..0f0d85d42e 100755 --- a/toolchain/install_abacus_toolchain_new.sh +++ b/toolchain/install_abacus_toolchain_new.sh @@ -200,6 +200,7 @@ EOF ui_print_color "${UI_GREEN}${UI_BOLD}" "🚀 Build ABACUS with your preferred toolchain:" ui_print_color "${UI_WHITE}" " ./build_abacus_gnu.sh # GNU toolchain (GCC + OpenBLAS)" ui_print_color "${UI_WHITE}" " ./build_abacus_intel.sh # Intel toolchain (ICC + MKL)" + ui_print_color "${UI_WHITE}" " ./build_abacus_gcc-mkl.sh # GCC + MKL" ui_print_color "${UI_WHITE}" " ./build_abacus_gcc-aocl.sh # AMD GCC + AOCL" ui_print_color "${UI_WHITE}" " ./build_abacus_aocc-aocl.sh # AMD AOCC + AOCL" echo "" @@ -219,4 +220,4 @@ EOF } # Run main function with all arguments -main "$@" \ No newline at end of file +main "$@"