Skip to content

Commit

Permalink
Update git to 2.36.0 and install OML tools
Browse files Browse the repository at this point in the history
  • Loading branch information
j-simmons-phd committed Apr 21, 2022
1 parent 3c746e9 commit 0f3c508
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repo provides a workspace for Mach 30 volunteers to work on [Mach 30 Modeli
- npx v8.3.1 (included with nodejs)
- yarn v1.22.11
- Utilities
- git v2.35.1 with @capsulecorplab .gitconfig
- git v2.36.0 with @capsulecorplab .gitconfig
- [Keychain](https://www.funtoo.org/Keychain) v2.8.5
- Vim (pre-installed) with @capsulecorplab [vimrc](https://gist.github.com/capsulecorplab/495058e7a57ed8adaed3c40c80d09739#file-vimrc)
- Artifact Generators
Expand Down
3 changes: 3 additions & 0 deletions install_files/rosetta-1.0.7-linux.gtk.x86_64.zip
Git LFS file not shown
3 changes: 3 additions & 0 deletions install_files/rstudio-2022.02.1-461-amd64.deb
Git LFS file not shown
41 changes: 40 additions & 1 deletion playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
tags: install_utilities

vars:
git_version: "2.35.1"
git_version: "2.36.0"
git_version_to_install: "1:{{ git_version }}-0ppa1~ubuntu20.04.1"
keychain_version: "2.8.5"
keychain_version_to_install: "{{ keychain_version }}-1"
Expand Down Expand Up @@ -444,6 +444,45 @@
dest: /home/kasm-default-profile/
remote_src: yes

-
# Install OML Tools
hosts: localhost
connection: local
tags: install_oml

tasks:
- name: Unzip Rosetta RCP
unarchive:
src: /home/kasm-default-profile/install_files/rosetta-1.0.7-linux.gtk.x86_64.zip
dest: /usr/local/bin
remote_src: yes
- name: symlink Rosetta executable into /usr/local/bin/
file:
src: /usr/local/bin/Rosetta/Rosetta
dest: /usr/local/bin/rosetta
owner: root
group: root
state: link
- name: Install R helper packages
apt:
name: software-properties-common, dirmngr
update_cache: yes
install_recommends: no
- name: Add R repos signing key
shell:
cmd: wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
- name: Add the R 4.0 repo from CRAN
shell:
cmd: add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
- name: Install R
apt:
name: r-base
update_cache: yes
install_recommends: no
- name: Install R Studio
apt:
deb: /home/kasm-default-profile/install_files/rstudio-2022.02.1-461-amd64.deb
update_cache: yes
-
# install readers
hosts: localhost
Expand Down

0 comments on commit 0f3c508

Please sign in to comment.