Update readme, point schedule to 18:00 UTC on Sundays

fix source image from incremental job
This commit is contained in:
Marcel Schwarz 2020-03-29 19:51:25 +02:00
parent e9aea8b9b9
commit 07b61ac245
2 changed files with 24 additions and 19 deletions

View File

@ -6,7 +6,7 @@ on:
- master - master
- github-actions - github-actions
schedule: schedule:
- cron: 0 18 * * * - cron: 0 18 * * 0
jobs: jobs:
@ -75,19 +75,19 @@ jobs:
- scheme: minimal - scheme: minimal
source: infraonly source: infraonly
- scheme: basic - scheme: basic
source: minimal source: minimal-incremental
- scheme: small - scheme: small
source: basic source: basic-incremental
- scheme: context - scheme: context
source: small source: small-incremental
- scheme: gust - scheme: gust
source: context source: context-incremental
- scheme: medium - scheme: medium
source: gust source: gust-incremental
- scheme: tetex - scheme: tetex
source: medium source: medium-incremental
- scheme: full - scheme: full
source: tetex source: tetex-incremental
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -1,18 +1,19 @@
# Schemes/Tags # Schemes/Tags
## Sizes ## Sizes
* `infraonly` - infrastructure-only scheme (no TeX at all) * `infraonly`, `infraonly-scratch` - infrastructure-only scheme (no TeX at all)
* `minimal` - minimal scheme (plain only) * `minimal`, `minimal-scratch`, `minimal-incremental` - minimal scheme (plain only)
* `basic` - basic scheme (plain and latex) * `basic`, `basic-scratch`, `basic-incremental` - basic scheme (plain and latex)
* `small` - small scheme (basic + xetex, metapost, a few languages) * `small`, `small-scratch`, `small-incremental` - small scheme (basic + xetex, metapost, a few languages)
* `medium` - medium scheme (small + more packages and languages) * `medium`, `medium-scratch`, `medium-incremental` - medium scheme (small + more packages and languages)
* `full`, `latest` - full scheme (everything) * `full`, `full-scratch`, `full-incremental`, `latest` - full scheme (everything)
## Extra Schemes ## Extra Schemes
* `gust` - GUST TeX Live scheme * `gust`, `gust-scratch`, `gust-incremental` - GUST TeX Live scheme
* `context` - ConTeXt scheme * `context`, `context-scratch`, `context-incremental` - ConTeXt scheme
* `tetex` - teTeX scheme (more than medium, but nowhere near full) * `tetex`, `tetex-scratch`, `tetex-incremental` - teTeX scheme (more than medium, but nowhere near full)
## Build Info (Image tree) ## Build Info `<tag>-incremental` (Image tree)
Images with this tag have all previous layers built in, use them for better caching.
``` ```
infraonly (base image with ubuntu:18.04) infraonly (base image with ubuntu:18.04)
+---> minimal +---> minimal
@ -24,8 +25,12 @@ infraonly (base image with ubuntu:18.04)
+---> tetex +---> tetex
+---> full +---> full
``` ```
NOTE: infraonly has no `incremental` tag.
# How to use ## Build Info `<tag>-scratch`
These images are built from the base ubuntu:18.04 image. They only have one latex layer. They are usually a little bit smaller than their `incremental` counterparts. The `scratch` image is default when used with no tag extension. Also `latest` is built from scratch and is the same as `full` and `full-scratch`.
# How to use the image
Mount your source code at `/data` and run whatever you want with LaTeX. Mount your source code at `/data` and run whatever you want with LaTeX.
# How to extend an Image # How to extend an Image