-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 2884875
Showing
11 changed files
with
836 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI | ||
|
||
"on": [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # full history for metadata | ||
submodules: true | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Python install | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install "lander<2.0.0" | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: sqrereadonly | ||
password: ${{ secrets.DOCKERHUB_SQREREADONLY_TOKEN }} | ||
|
||
- name: TeX build | ||
run: | | ||
docker run --rm -v `pwd`:/workspace -w /workspace lsstsqre/lsst-texmf:latest sh -c 'make' | ||
- name: Landing page upload | ||
if: ${{ github.event_name == 'push' }} | ||
env: | ||
LTD_PASSWORD: ${{ secrets.LTD_PASSWORD }} | ||
LTD_USERNAME: ${{ secrets.LTD_USERNAME }} | ||
run: | | ||
lander --upload --pdf ITTN-080.pdf --lsstdoc ITTN-080.tex --ltd-product ittn-080 |
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,185 @@ | ||
## Products (published by CI) | ||
ITTN-080.pdf | ||
|
||
# meta.tex is generated by the Makefile | ||
meta.tex | ||
|
||
one.* | ||
## Core latex/pdflatex auxiliary files: | ||
*.aux | ||
*.lof | ||
*.log | ||
*.lot | ||
*.fls | ||
*.out | ||
*.toc | ||
*.fmt | ||
*.fot | ||
*.cb | ||
*.cb2 | ||
*.xdv | ||
|
||
|
||
## Intermediate documents: | ||
*.dvi | ||
*-converted-to.* | ||
|
||
## Bibliography auxiliary files (bibtex/biblatex/biber): | ||
*.bbl | ||
*.bcf | ||
*.blg | ||
*-blx.aux | ||
*-blx.bib | ||
*.brf | ||
*.run.xml | ||
|
||
## Build tool auxiliary files: | ||
*.fdb_latexmk | ||
*.synctex | ||
*.synctex.gz | ||
*.synctex.gz(busy) | ||
*.pdfsync | ||
|
||
## Auxiliary and intermediate files from other packages: | ||
# algorithms | ||
*.alg | ||
*.loa | ||
|
||
# achemso | ||
acs-*.bib | ||
|
||
# amsthm | ||
*.thm | ||
|
||
# beamer | ||
*.nav | ||
*.snm | ||
*.vrb | ||
|
||
# cprotect | ||
*.cpt | ||
|
||
# fixme | ||
*.lox | ||
|
||
#(r)(e)ledmac/(r)(e)ledpar | ||
*.end | ||
*.?end | ||
*.[1-9] | ||
*.[1-9][0-9] | ||
*.[1-9][0-9][0-9] | ||
*.[1-9]R | ||
*.[1-9][0-9]R | ||
*.[1-9][0-9][0-9]R | ||
*.eledsec[1-9] | ||
*.eledsec[1-9]R | ||
*.eledsec[1-9][0-9] | ||
*.eledsec[1-9][0-9]R | ||
*.eledsec[1-9][0-9][0-9] | ||
*.eledsec[1-9][0-9][0-9]R | ||
|
||
# glossaries | ||
*.acn | ||
*.acr | ||
*.glg | ||
*.glo | ||
*.gls | ||
*.glsdefs | ||
|
||
# gnuplottex | ||
*-gnuplottex-* | ||
|
||
# hyperref | ||
*.brf | ||
|
||
# knitr | ||
*-concordance.tex | ||
# TODO Comment the next line if you want to keep your tikz graphics files | ||
*.tikz | ||
*-tikzDictionary | ||
|
||
# listings | ||
*.lol | ||
|
||
# makeidx | ||
*.idx | ||
*.ilg | ||
*.ind | ||
*.ist | ||
|
||
# minitoc | ||
*.maf | ||
*.mlf | ||
*.mlt | ||
*.mtc | ||
*.mtc[0-9] | ||
*.mtc[1-9][0-9] | ||
|
||
# minted | ||
_minted* | ||
*.pyg | ||
|
||
# morewrites | ||
*.mw | ||
|
||
# mylatexformat | ||
*.fmt | ||
|
||
# nomencl | ||
*.nlo | ||
|
||
# sagetex | ||
*.sagetex.sage | ||
*.sagetex.py | ||
*.sagetex.scmd | ||
|
||
# sympy | ||
*.sout | ||
*.sympy | ||
sympy-plots-for-*.tex/ | ||
|
||
# pdfcomment | ||
*.upa | ||
*.upb | ||
|
||
# pythontex | ||
*.pytxcode | ||
pythontex-files-*/ | ||
|
||
# thmtools | ||
*.loe | ||
|
||
# TikZ & PGF | ||
*.dpth | ||
*.md5 | ||
*.auxlock | ||
|
||
# todonotes | ||
*.tdo | ||
|
||
# xindy | ||
*.xdy | ||
|
||
# xypic precompiled matrices | ||
*.xyc | ||
|
||
# endfloat | ||
*.ttt | ||
*.fff | ||
|
||
# Latexian | ||
TSWLatexianTemp* | ||
|
||
## Editors: | ||
# WinEdt | ||
*.bak | ||
*.sav | ||
|
||
# Texpad | ||
.texpadtmp | ||
|
||
# Kile | ||
*.backup | ||
|
||
# KBibTeX | ||
*~[0-9]* |
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 @@ | ||
Copyright 2024 Association of Universities for Research in Astronomy, Inc. (AURA) |
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,77 @@ | ||
\documentclass[PMO,lsstdraft,authoryear,toc]{lsstdoc} | ||
\input{meta} | ||
|
||
% Package imports go here. | ||
|
||
% Local commands go here. | ||
|
||
%If you want glossaries | ||
%\input{aglossary.tex} | ||
%\makeglossaries | ||
|
||
\title{Software development on Rubin LSST} | ||
|
||
% This can write metadata into the PDF. | ||
% Update keywords and author information as necessary. | ||
\hypersetup{ | ||
pdftitle={Software development on Rubin LSST}, | ||
pdfauthor={Gonzalo Seriche}, | ||
pdfkeywords={} | ||
} | ||
|
||
% Optional subtitle | ||
% \setDocSubtitle{A subtitle} | ||
|
||
\author{% | ||
Gonzalo Seriche | ||
} | ||
|
||
\setDocRef{ITTN-080} | ||
\setDocUpstreamLocation{\url{https://github.com/lsst-it/ittn-080}} | ||
|
||
\date{\vcsDate} | ||
|
||
% Optional: name of the document's curator | ||
% \setDocCurator{The Curator of this Document} | ||
|
||
\setDocAbstract{% | ||
How to work with LSST Repositories and fast forward your code to production. | ||
} | ||
|
||
% Change history defined here. | ||
% Order: oldest first. | ||
% Fields: VERSION, DATE, DESCRIPTION, OWNER NAME. | ||
% See LPM-51 for version number policy. | ||
\setDocChangeRecord{% | ||
\addtohist{1}{YYYY-MM-DD}{Unreleased.}{Gonzalo Seriche} | ||
} | ||
|
||
|
||
\begin{document} | ||
|
||
% Create the title page. | ||
\maketitle | ||
% Frequently for a technote we do not want a title page uncomment this to remove the title page and changelog. | ||
% use \mkshorttitle to remove the extra pages | ||
|
||
% ADD CONTENT HERE | ||
% You can also use the \input command to include several content files. | ||
|
||
\appendix | ||
% Include all the relevant bib files. | ||
% https://lsst-texmf.lsst.io/lsstdoc.html#bibliographies | ||
\section{References} \label{sec:bib} | ||
\renewcommand{\refname}{} % Suppress default Bibliography section | ||
\bibliography{local,lsst,lsst-dm,refs_ads,refs,books} | ||
|
||
% Make sure lsst-texmf/bin/generateAcronyms.py is in your path | ||
\section{Acronyms} \label{sec:acronyms} | ||
\input{acronyms.tex} | ||
% If you want glossary uncomment below -- comment out the two lines above | ||
%\printglossaries | ||
|
||
|
||
|
||
|
||
|
||
\end{document} |
Oops, something went wrong.