diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5560158262..6a88eeb53c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,12 @@ jobs: - name: Build ckan.exe and netkan.exe run: ./build --configuration=${{ matrix.configuration}} - name: Run tests - run: xvfb-run ./build test+only --configuration=${{ matrix.configuration }} --where="Category!=FlakyNetwork" + run: | + xvfb-run ./build test+only --configuration=${{ matrix.configuration }} --where="Category!=FlakyNetwork" + # Smoke test for netkan.exe, test for SpaceDock reachability + pushd _build && \ + curl -O https://raw.githubusercontent.com/KSP-CKAN/NetKAN/master/NetKAN/ZeroMiniAVC.netkan && \ + mono netkan.exe ZeroMiniAVC.netkan - name: Upload ckan.exe artifact uses: actions/upload-artifact@v2