Skip to content

Commit

Permalink
Add inflator container smoke test to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DasSkelett committed Sep 30, 2021
1 parent 29feea1 commit 9ecb9fb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,17 @@ 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
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
"
- name: Upload ckan.exe artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 9ecb9fb

Please sign in to comment.