diff --git a/.github/workflows/multi_nim.yml b/.github/workflows/multi_nim.yml index 207e02d45..655ca7e89 100644 --- a/.github/workflows/multi_nim.yml +++ b/.github/workflows/multi_nim.yml @@ -149,22 +149,12 @@ jobs: bash build_nim.sh nim csources dist/nimble NimBinaries echo '${{ github.workspace }}/nim/bin' >> $GITHUB_PATH - - name: Setup Go - uses: actions/setup-go@v2 - with: - go-version: '^1.15.5' - - - name: Install p2pd - run: | - V=1 bash scripts/build_p2pd.sh p2pdCache 124530a3 - - name: Run nim-libp2p tests run: | nimble install -y --depsOnly - nimble test + nimble test_slim if [[ "${{ matrix.branch }}" == "version-1-6" || "${{ matrix.branch }}" == "devel" ]]; then echo -e "\nTesting with '--gc:orc':\n" export NIMFLAGS="--gc:orc" - nimble test + nimble test_slim fi - diff --git a/libp2p.nimble b/libp2p.nimble index af37ab96a..0a16a32c1 100644 --- a/libp2p.nimble +++ b/libp2p.nimble @@ -86,8 +86,8 @@ task test, "Runs the test suite": task test_slim, "Runs the test suite": exec "nimble testnative" exec "nimble testpubsub_slim" - exec "nimble testinterop" exec "nimble testfilter" + exec "nimble examples_build" task examples_build, "Build the samples": buildSample("directchat")