updates
This commit is contained in:
parent
59d45be045
commit
3fd3008a82
|
@ -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}
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue