aboutsummaryrefslogtreecommitdiffstats
path: root/static-builds (follow)
Commit message (Collapse)AuthorAgeLines
* Other references/usages of poetry migrated to uvGravatar Xithrius2025-07-17-2/+2
|
* Capitalize Python outside of tags (#1046)Gravatar jchristgit2023-08-02-2/+2
| | | | | Related to #1044. Co-authored-by: Xithrius <[email protected]>
* Switch to ruff for lintingGravatar Johannes Christ2023-05-10-3/+3
|
* Use a httpx.Client for netlify static buildsGravatar Chris Lovering2022-09-30-3/+8
| | | | | | This allows for setting the config in one place and reusing it. This also solves an issue where the requests to fetch the download URL would timeout after the (default) 5 seconds.
* Increase Timeout For Artifact DownloadGravatar Hassan Abouelela2022-08-12-1/+1
| | | | | | | Sets the timeout of downloads to 3 minutes (from a default of 5 seconds) since some artifacts can be quite large. Signed-off-by: Hassan Abouelela <[email protected]>
* Raise Static Build After WaitingGravatar Hassan Abouelela2022-08-12-8/+14
| | | | | | | | Adds a missing raise in the static build for situations where everything was successful, but the build time passed the deadline specified by the site API. Signed-off-by: Hassan Abouelela <[email protected]>
* Make Awaiting Workflow Run A User ResponsibilityGravatar Hassan Abouelela2022-07-12-1/+8
| | | | | | | | | | | Moves the responsibility of re-requesting a workflow run from the API to the user. This makes the requests much shorter-lived, and allows the client to control how they want to handle sleeping and retrying. This also has the benefit of removing the only real piece of async code, so now the view is completely sync once again. Signed-off-by: Hassan Abouelela <[email protected]>
* Update Netlify Build ScriptGravatar Hassan Abouelela2022-07-12-104/+45
| | | | | | Update the netlify build script to use the artifacts API from the site. Signed-off-by: Hassan Abouelela <[email protected]>
* Clean Up Static Deploys ReadmeGravatar Hassan Abouelela2021-11-26-6/+8
| | | Reorganize the static deploy readme, and clarify the content.
* Uses Nightly To Download ArtifactsGravatar Hassan Abouelela2021-10-10-15/+15
| | | | Signed-off-by: Hassan Abouelela <[email protected]>
* Merges DockerfilesGravatar Hassan Abouelela2021-10-10-29/+1
| | | | | | | Merges the normal dockerfile with the static build one to reduce duplication. Signed-off-by: Hassan Abouelela <[email protected]>
* Fixes Caching On Docker BuildGravatar Hassan Abouelela2021-10-10-2/+2
| | | | | | | Reworks the docker build action to use buildx in all steps to make the caching work. Reduces the wait time on the fetch action. Signed-off-by: Hassan Abouelela <[email protected]>
* Adds Netlify BuildsGravatar Hassan Abouelela2021-10-10-0/+170
| | | | | Adds an action which builds and uploads the static site as an artifact, and a fetch script to be run on the netlify builders.
* Adds Static Docker BuildGravatar Hassan Abouelela2021-10-10-0/+28
Adds a docker image which performs a static build of the site.