mirror of
https://github.com/godotengine/doc-status.git
synced 2026-01-04 10:09:48 +03:00
While less predictable, this ensures a bundled Python version is always used to avoid downloading it every time.
16 lines
319 B
YAML
16 lines
319 B
YAML
os: linux
|
|
dist: bionic
|
|
# Python is required to run `doc_status.py`.
|
|
language: python
|
|
|
|
python:
|
|
- 3.7
|
|
|
|
install:
|
|
- curl -LO https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_0.65.3_Linux-64bit.tar.gz
|
|
- tar xf hugo_0.65.3_Linux-64bit.tar.gz hugo
|
|
- sudo mv hugo /usr/local/bin/
|
|
|
|
script:
|
|
- ./build.sh
|