-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
435 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
--- | ||
kind: pipeline | ||
type: docker | ||
name: TeXlive | ||
|
||
steps: | ||
- name: build | ||
image: texlive/texlive | ||
commands: | ||
- tlmgr option repository https://ctan.gutenberg-asso.fr/systems/texlive/tlnet | ||
- tlmgr update --self --all | ||
- latexmk sbabook | ||
- latexmk sbabook.bod | ||
- latexmk sbabook.spiral | ||
|
||
- name: build log | ||
image: alpine | ||
commands: | ||
- cat sbabook.log | ||
- cat sbabook.bod.log | ||
- cat sbabook.spiral.log | ||
when: | ||
status: [failure, success] | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: minimal TeXlive | ||
|
||
steps: | ||
- name: build | ||
image: texlive/texlive:latest-minimal | ||
pull: always | ||
commands: | ||
- tlmgr option repository https://ctan.gutenberg-asso.fr/systems/texlive/tlnet | ||
- tlmgr update --self --all | ||
- tlmgr install latex-bin latexmk | ||
- xargs tlmgr install < texlive.deps | ||
- tlmgr path add | ||
- latexmk sbabook | ||
- latexmk sbabook.bod | ||
- latexmk sbabook.spiral | ||
|
||
- name: build log | ||
image: alpine | ||
commands: | ||
- cat sbabook.log | ||
- cat sbabook.bod.log | ||
- cat sbabook.spiral.log | ||
when: | ||
status: [failure, success] | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: Ubuntu + TeXlive 2023 | ||
|
||
environment: | ||
TEXLIVE_RELEASE: 2023 | ||
|
||
steps: | ||
- name: build | ||
image: ubuntu | ||
commands: | ||
- apt update && apt install -y curl perl | ||
- export PATH=$HOME/texlive/bin/x86_64-linux:$HOME/texlive/bin/aarch64-linux:$PATH | ||
- ./ci/install-texlive | ||
- xargs tlmgr install < texlive-2023.deps | ||
- latexmk sbabook | ||
- latexmk sbabook.bod | ||
- latexmk sbabook.spiral | ||
|
||
- name: build log | ||
image: alpine | ||
commands: | ||
- cat sbabook.log | ||
- cat sbabook.bod.log | ||
- cat sbabook.spiral.log | ||
when: | ||
status: [failure, success] | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: Ubuntu + TeXlive rolling | ||
|
||
environment: | ||
TEXLIVE_RELEASE: rolling | ||
|
||
steps: | ||
- name: build | ||
image: ubuntu | ||
commands: | ||
- apt update && apt install -y curl perl | ||
- export PATH=$HOME/texlive/bin/x86_64-linux:$HOME/texlive/bin/aarch64-linux:$PATH | ||
- ./ci/install-texlive | ||
- xargs tlmgr install < texlive.deps | ||
- latexmk sbabook | ||
- latexmk sbabook.bod | ||
- latexmk sbabook.spiral | ||
|
||
- name: build log | ||
image: alpine | ||
commands: | ||
- cat sbabook.log | ||
- cat sbabook.bod.log | ||
- cat sbabook.spiral.log | ||
when: | ||
status: [failure, success] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.