diff --git a/.github/workflows/docker_actions.yml b/.github/workflows/docker_actions.yml index efe09fed8b..7672814f77 100644 --- a/.github/workflows/docker_actions.yml +++ b/.github/workflows/docker_actions.yml @@ -28,7 +28,7 @@ jobs: fetch-depth: 5 - name: Setup cache id: setup-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/cache diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index f335fd13ff..83e575984d 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -478,7 +478,7 @@ jobs: shell: bash - name: Setup cache id: setup-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/cache diff --git a/src/nwc_columbus/aoints/GNUmakefile b/src/nwc_columbus/aoints/GNUmakefile index 2398d1011f..4e2584c5d7 100644 --- a/src/nwc_columbus/aoints/GNUmakefile +++ b/src/nwc_columbus/aoints/GNUmakefile @@ -3,8 +3,10 @@ include ../../config/makefile.h -OBJ_OPTIMIZE = nwc_sym_mod.o \ - dft_aoints.o wrt_dft_aoints.o int_1e_sifs.o \ +MAKEFLAGS = -j 1 --no-print-directory +OBJ = nwc_sym_mod.o +OBJ_OPTIMIZE = \ + dft_aoints.o wrt_dft_aoints.o int_1e_sifs.o \ int_so_sifs.o int_2e_sifs.o int_2e_sifs_a.o \ sifs_2e_task.o int_2e_sifs_b.o nadct_trace.o \ rdhcid.o egrad_trace.o rd1mat.o sif2ga.o \