Merge pull request #2804 from cdr/jsjoeio-fix-ci-linux

fix(ci): add step to remove docker images on linux-arm64
This commit is contained in:
Joe Previte 2021-03-02 11:51:40 -07:00 committed by GitHub
commit d48a74c317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -48,6 +48,8 @@ jobs:
with: with:
name: test-videos name: test-videos
path: ./test/videos path: ./test/videos
- name: Remove release packages and test artifacts
run: rm -rf ./release-packages ./test/videos
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -102,6 +104,8 @@ jobs:
with: with:
name: release-packages name: release-packages
path: ./release-packages path: ./release-packages
- name: Remove docker images
run: docker system prune -af
macos-amd64: macos-amd64:
needs: release needs: release

View File

@ -12,11 +12,12 @@ main() {
echo "Testing standalone release." echo "Testing standalone release."
./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension ms-python.python # Note: using a basic theme extension because it doesn't update often and is more reliable for testing
./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension wesbos.theme-cobalt2
local installed_extensions local installed_extensions
installed_extensions="$(./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)" installed_extensions="$(./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)"
# We use grep as ms-python.python may have dependency extensions that change. # We use grep as wesbos.theme-cobalt2 may have dependency extensions that change.
if ! echo "$installed_extensions" | grep -q "ms-python.python"; then if ! echo "$installed_extensions" | grep -q "wesbos.theme-cobalt2"; then
echo "Unexpected output from listing extensions:" echo "Unexpected output from listing extensions:"
echo "$installed_extensions" echo "$installed_extensions"
exit 1 exit 1