kopia lustrzana https://github.com/wagtail/wagtail
Remove Squash.io configuration (#13104)
rodzic
23253f0dad
commit
4ac2fd33d9
28
.squash.yml
28
.squash.yml
|
|
@ -1,28 +0,0 @@
|
|||
deployments:
|
||||
default:
|
||||
dockerimage: python:3.11.4-slim-bullseye
|
||||
build_steps:
|
||||
- apt-get update && apt-get install -y libssl-dev libpq-dev git build-essential libfontconfig1 libfontconfig1-dev curl
|
||||
- RUN bash -c "curl -sL https://deb.nodesource.com/setup_22.x | bash -"
|
||||
- apt install -y nodejs
|
||||
- pip install setuptools pip --upgrade --force-reinstall
|
||||
- cd /code
|
||||
post_build_steps:
|
||||
- npm ci --audit=false --progress=false
|
||||
- npm run build
|
||||
- git clone --depth=1 https://github.com/wagtail/bakerydemo.git /bakerydemo
|
||||
# Install bakerydemo dependencies
|
||||
- pip install -r /bakerydemo/requirements/base.txt
|
||||
# Install the checked-out version of Wagtail, overriding whatever version was installed previously
|
||||
- pip install /code
|
||||
- cd /bakerydemo
|
||||
- python manage.py migrate
|
||||
# Load content, will also create a superuser for us (admin / changeme)
|
||||
- python manage.py load_initial_data
|
||||
# Ensure that the CSRF_TRUSTED_ORIGINS setting includes the Squash.io domain
|
||||
- echo "CSRF_TRUSTED_ORIGINS = ['https://*.squash.io']" > /bakerydemo/bakerydemo/settings/local.py
|
||||
launch_steps:
|
||||
- cd /bakerydemo/
|
||||
- python manage.py runserver 0.0.0.0:80
|
||||
port_forwarding: 80:80
|
||||
run_options: -v ~/code:/code
|
||||
|
|
@ -16,6 +16,7 @@ Changelog
|
|||
* Fix: Fix behaviour of `ViewSet.inject_view_methods` with multiple methods (Gorlik)
|
||||
* Maintenance: Refactor `get_embed` to remove `finder` argument which was only used for mocking in unit tests (Jigyasu Rajput)
|
||||
* Maintenance: Simplify handling of `None` values in `TypedTableBlock` (Jigyasu Rajput)
|
||||
* Maintenance: Remove squash.io configuration (Sage Abdullah)
|
||||
|
||||
7.0.1 (xx.xx.xxxx) - IN DEVELOPMENT
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -141,8 +141,5 @@ We thank the following organisations for their services used in Wagtail's develo
|
|||
[](https://www.browserstack.com/)<br>
|
||||
[BrowserStack](https://www.browserstack.com/) provides the project with free access to their live web-based browser testing tool, and automated Selenium cloud testing.
|
||||
|
||||
[](https://www.squash.io/)<br>
|
||||
[Squash](https://www.squash.io/) provides the project with free test environments for reviewing pull requests.
|
||||
|
||||
[](https://assistivlabs.com/)<br>
|
||||
[Assistiv Labs](https://assistivlabs.com/) provides the project with unlimited access to their remote testing with assistive technologies.
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ depth: 1
|
|||
|
||||
* Refactor `get_embed` to remove `finder` argument which was only used for mocking in unit tests (Jigyasu Rajput)
|
||||
* Simplify handling of `None` values in `TypedTableBlock` (Jigyasu Rajput)
|
||||
* Remove squash.io configuration (Sage Abdullah)
|
||||
|
||||
## Upgrade considerations - changes affecting all projects
|
||||
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue