From 197399973ee69be2e3e139681f3a4c1317a3d430 Mon Sep 17 00:00:00 2001 From: DasSkelett Date: Fri, 1 Oct 2021 00:57:35 +0200 Subject: [PATCH] Add inflator container smoke test to build.yml --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5560158262..1bc597c9c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,6 +52,17 @@ jobs: run: ./build --configuration=${{ matrix.configuration}} - name: Run tests run: xvfb-run ./build test+only --configuration=${{ matrix.configuration }} --where="Category!=FlakyNetwork" + - name: Run inflator container smoke test + run: | + cd _build + curl -fsSL https://get.docker.com -o get-docker.sh + sh get-docker.sh + docker build --tag inflator --file ../Dockerfile.netkan . + docker run --rm --name inflator --entrypoint /bin/bash inflator -c " + curl -O https://raw.githubusercontent.com/KSP-CKAN/NetKAN/master/NetKAN/ZeroMiniAVC.netkan && \ + mono netkan.exe ZeroMiniAVC.netkan + " + if: matrix.configuration == 'release' && ( matrix.mono == '6.8' || matrix.mono == 'latest' ) - name: Upload ckan.exe artifact uses: actions/upload-artifact@v2