This commit is contained in:
Jaremy Creechley 2023-07-11 17:22:17 -07:00
parent 59d45be045
commit 3fd3008a82
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
2 changed files with 5 additions and 2 deletions

View File

@ -158,6 +158,8 @@ jobs:
# shell: ${{ matrix.shell }} {0} # shell: ${{ matrix.shell }} {0}
# run: echo "NIM_COMMIT=${{ matrix.branch }}" >> ${GITHUB_ENV} # run: echo "NIM_COMMIT=${{ matrix.branch }}" >> ${GITHUB_ENV}
- name: Run tests
run: |
- name: Run tests - name: Run tests
run: | run: |
if [[ "${{ matrix.target.os }}" == "windows" ]]; then if [[ "${{ matrix.target.os }}" == "windows" ]]; then
@ -169,5 +171,6 @@ jobs:
echo "BUILD: " echo "BUILD: "
export NIM_COMMIT=${{ matrix.branch }} export NIM_COMMIT=${{ matrix.branch }}
make -j${ncpu} CI_CACHE=NimBinaries ARCH_OVERRIDE=${PLATFORM} QUICK_AND_DIRTY_COMPILER=1 update # make -j${ncpu} CI_CACHE=NimBinaries ARCH_OVERRIDE=${PLATFORM} QUICK_AND_DIRTY_COMPILER=1 update
make -j${ncpu}
make test -j${ncpu} make test -j${ncpu}

View File

@ -56,7 +56,7 @@ all: | build deps
deps: | deps-common nat-libs deps: | deps-common nat-libs
#- deletes and recreates "codexdht.nims" which on Windows is a copy instead of a proper symlink #- deletes and recreates "codexdht.nims" which on Windows is a copy instead of a proper symlink
update: | update-common codexdht.nims update: | update-common
rm -rf codexdht.nims && \ rm -rf codexdht.nims && \
$(MAKE) codexdht.nims $(HANDLE_OUTPUT) $(MAKE) codexdht.nims $(HANDLE_OUTPUT)