From a0ae063a1f93e7fd8edc0bfd09a975aac92ec340 Mon Sep 17 00:00:00 2001 From: Prasad Tengse Date: Sun, 31 May 2020 03:36:51 +0200 Subject: [PATCH] disable SPA --- docs/changelog.md | 8 ++++---- docs/faq/debug.md | 7 +++---- mkdocs.yml | 6 ++++-- tests/distro.sh | 1 - 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index eef59e24..6a297399 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -6,10 +6,10 @@ - Drop 32 bit support for x86 architecture - Add support focal, and Mint 20 - Fix Google Cloud SDK on focal -- Way to handle Python2 unsupported on focal and other upcoming distros. -- Changes to some flags. Please see flags documentation. Some flags are now dropped or reassigned -- Migrate to GitHub Actions. - +- Way to handle Python2 being unsupported on focal and other upcoming distros. +- Changes to some flags. Some flags are now dropped or reassigned. +- Migrate to GitHub Actions :octicons-octoface: +- Dark Mode ## 5.5.2 diff --git a/docs/faq/debug.md b/docs/faq/debug.md index 063af4e2..502d8cf9 100644 --- a/docs/faq/debug.md +++ b/docs/faq/debug.md @@ -4,14 +4,13 @@ You can chose from multiple debug modes. by setting DEBUG variable to one of the - `DEBUG=1` Print debug messages - `DEBUG=internal` display some internal debug messages -- `DEBUG=trace` Print debug, internal and also apt logs. -This can generate a lot of output. +- `DEBUG=trace` Print debug, internal and also apt logs. Please note that This can generate a lot of output. ## Local testing -You can use `./tests/test-distro.sh` to test the scripts locally. It uses docker to build and test the script in simulate mode inside +You can use `./tests/distro-local.sh` to test the scripts locally. It uses docker to build and test the script in simulate mode inside containers. This script requires two arguments __distro name__ and __release name__. They are used as parameters to build the Docker image from dockerfile in `dockerfiles/tests`.eg.to test the script on Ubuntu 18.04 bionic, run it as -`./tests/test-distro.sh ubuntu bionic`. It will fetch and build the docker image and run the script in simulate mode using the config files at `https://{branch-name}--ubuntu-post-install.netlify.net/config/default.yml` +`./tests/distro-local.sh ubuntu bionic`. Alternatively you can build the docker image yourself. diff --git a/mkdocs.yml b/mkdocs.yml index fbe54cdb..446d9d63 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -23,7 +23,6 @@ theme: repo: fontawesome/brands/github-alt features: - tabs - - instant # Language settings language: en # Color Settings @@ -64,14 +63,17 @@ markdown_extensions: - pymdownx.caret - pymdownx.critic - pymdownx.details + - pymdownx.emoji: + emoji_index: !!python/name:materialx.emoji.twemoji + emoji_generator: !!python/name:materialx.emoji.to_svg - pymdownx.inlinehilite - - pymdownx.keys - pymdownx.magiclink - pymdownx.mark - pymdownx.smartsymbols - pymdownx.superfences - pymdownx.tasklist: custom_checkbox: true + - pymdownx.tabbed - pymdownx.tilde - pymdownx.magiclink: repo_url_shorthand: true diff --git a/tests/distro.sh b/tests/distro.sh index c57eede4..04a439e2 100755 --- a/tests/distro.sh +++ b/tests/distro.sh @@ -28,7 +28,6 @@ function main() docker_tag="${distro//[\/]/-}-${release}" - echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" echo "Building $distro:$release Docker Image"