Skip to content

Commit

Permalink
[Build] aaa6a67
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonYao committed Feb 2, 2025
1 parent 68e7fea commit f4c59cb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Resume_Jason_Yao.tex
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ \subsubsection{Miscellaneous}
%
\section{Experience}

\workplace{logos/short/google}{Google}{New York, NY}{3 years, 4 months}
\workplace{logos/short/google}{Google}{New York, NY}{3 years, 5 months}
\position{Senior Software Engineer (L5)}{Nov 2023 – Present}
\vspace{\topsep} % Hacky fix for awkward extra vertical space
\begin{tightemize}
Expand Down
23 changes: 21 additions & 2 deletions bin/install_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ function start() {
install_texlive_package_manager

# Debugging information
info "Imagemagick version and delegate info"
convert --version
install_imagemagick

# Imagemagick 6 hack for ubuntu 18.04+,
# see https://askubuntu.com/a/1081907 for more information
Expand Down Expand Up @@ -142,5 +141,25 @@ function update_cache_manifest() {
tlmgr list --only-installed --data name,lcat-version > /tmp/texlive/package-manifest.txt
}

function install_imagemagick() {
info "Checking if imagemagick is installed"
if command -v convert > /dev/null 2>&1; then
# Previous to 2025-02-01, ubuntu-latest had imagemagick pre-installed,
# it looks like it got removed sometime between Jan 01 and Feb 01 2025
info "Imagemagick was found to be installed, version and delegate info:"
convert --version
else
info "Imagemagick was not found, installing now"
sudo apt update

if sudo apt install -y imagemagick ; then
info "Imagemagick was now installed, version and delegate info:"
convert --version
else
fail "Failed to install imagemagick"
fi
fi
}

start

Binary file modified docs/Resume_Jason_Yao.pdf
Binary file not shown.
Binary file modified docs/Resume_Jason_Yao.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f4c59cb

Please sign in to comment.