-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into cvmfs_outline
- Loading branch information
Showing
3 changed files
with
22 additions
and
8 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 |
---|---|---|
@@ -1,21 +1,33 @@ | ||
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
name: build paper | ||
on: push | ||
name: build tutorial | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: Compile LaTeX document | ||
- name: Compile LaTeX document (EESSI) | ||
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed | ||
with: | ||
working_directory: isc24/EESSI/ | ||
root_file: main.tex | ||
args: "-output-directory=build -pdf" | ||
latexmk_shell_escape: true | ||
- name: Store produce PDFs | ||
- name: Store produce PDFs (EESSI) | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: EasyBuild-ISC-tutorial | ||
name: EESSI-ISC24-tutorial | ||
path: isc24/EESSI/build/main.pdf | ||
- name: Compile LaTeX document (CernVM-FS) | ||
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed | ||
with: | ||
working_directory: isc24/CernVM-FS | ||
root_file: main.tex | ||
args: "-output-directory=build -pdf" | ||
latexmk_shell_escape: true | ||
- name: Store produce PDFs (CernVM-FS) | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: CVMFS-ISC24-tutorial | ||
path: isc24/CernVM-FS/build/main.pdf |
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 @@ | ||
Jakob Blomer is a staff member in the scientific software group at CERN. He is the original author of the CernVM File System. Jakob received a PhD in computer science from the Technical University of Munich in 2012. Afterwards he was a Marie-Curie fellow at CERN and a visiting scholar at the RAMCloud research group at Stanford University. Besides his work on CernVM-FS, Jakob is leading the R&D on the future event data I/O for experiments at the CERN LHC. |
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