Skip to content

Commit 0c70e58

Browse files
authored
Merge pull request #156 from BattModels/awadell1-patch-1
Create jekyll.yml
2 parents abd55dc + 37167f9 commit 0c70e58

File tree

9 files changed

+126
-148
lines changed

9 files changed

+126
-148
lines changed

.github/workflows/CI.yml

+15-23
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: CI
22
on: [push, pull_request]
33

44
jobs:
5-
test:
5+
build:
66
name: Test and Build Site
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: 3
@@ -24,28 +24,20 @@ jobs:
2424
- run: python -m pip install -r requirements.txt
2525
- run: make -j build
2626
- run: make -j test
27-
- run: make -j site-publish.zip
28-
- uses: actions/upload-artifact@v2
27+
- name: Upload artifact
28+
uses: actions/upload-pages-artifact@v3
2929
with:
30-
name: site-publish
31-
path: site-publish.zip
32-
publish:
30+
path: _site/
31+
32+
# Deployment job
33+
deploy:
3334
if: ${{ github.ref == 'refs/heads/main' }}
34-
name: "Upload Publishable Site"
35-
needs: test
35+
environment:
36+
name: github-pages
37+
url: ${{ steps.deployment.outputs.page_url }}
3638
runs-on: ubuntu-latest
37-
concurrency:
38-
group: publish
39-
cancel-in-progress: true
39+
needs: build
4040
steps:
41-
- uses: actions/download-artifact@v2
42-
with:
43-
name: site-publish
44-
path: site-publish.zip
45-
- uses: "marvinpinto/action-automatic-releases@latest"
46-
with:
47-
title: "Website"
48-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
49-
automatic_release_tag: "latest"
50-
prerelease: false
51-
files: site-publish.zip
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ repos:
77
- id: check-added-large-files
88
args: ['--maxkb=100', '--enforce-all']
99
types: ['image']
10+
exclude: img/group-photo.jpg
1011
- id: check-yaml
1112
- id: check-xml
1213
- id: end-of-file-fixer

Dockerfile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
FROM ruby:3-slim
2+
run apt-get update && apt-get install -y --no-install-recommends \
3+
python3 \
4+
python3-pip \
5+
binutils \
6+
gcc \
7+
git \
8+
make \
9+
g++
10+
11+
# Setup environment
12+
RUN mkdir -p /opt/env
13+
ADD Gemfile /opt/env
14+
ADD Gemfile.lock /opt/env
15+
ADD requirements.txt /opt/env
16+
WORKDIR /opt/env
17+
RUN python3 -m pip install --break-system-packages -r requirements.txt
18+
ENV GEM_HOME="/usr/local/bundle"
19+
ENV PATH $GEM_HOME/bin:$GEM_HOME/gems/bin:$PATH
20+
RUN bundle install
21+
22+
VOLUME ["/opt/site"]
23+
WORKDIR /opt/site

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Viswanathan Research Group @CMU
2-
url: https://www.cmu.edu/me/venkatgroup/
2+
url: eeg.engin.umich.edu
33

44
exclude: [bibble, README.md, Makefile, screenshot.png]
55

_data/people.yml

+80-94
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,14 @@
22

33
venkvis:
44
display_name: "Venkat Viswanathan"
5-
webpage: "https://www.andrew.cmu.edu/user/venkatv/index.html#"
5+
webpage: "https://aero-dev-01.engin.umich.edu/people/viswanathan-venkat/"
66
role: pi
77
image: img/people/venkvis.png
88
bio: Associate Professor of Mechanical Engineering
9-
email: "venkvis [at] cmu [dot] edu"
9+
email: venkvis [at] umich [dot] edu
1010

1111
# Postdocs, ordered by seniority at present
1212

13-
pinweng:
14-
display_name: "Pinwen Guan"
15-
role: postdoc
16-
image: img/people/pinweng.jpeg
17-
email: "pinweng [at] andrew [dot] cmu [dot] edu"
18-
bio: Postdoctoral Research Associate, Mechanical Engineering
19-
20-
sjtuzhanglei:
21-
display_name: "Lei Zhang"
22-
role: postdoc
23-
image: img/people/sjtuzhanglei.jpg
24-
webpage: "https://www.linkedin.com/in/lei-zhang-0b8aa126/"
25-
email: "sjtuzhanglei [at] gmail [dot] com"
26-
bio: Postdoctoral Research Associate, Mechanical Engineering
27-
28-
eannevel:
29-
display_name: "Emil Annevelink"
30-
role: postdoc
31-
image: img/people/eannevel.jpg
32-
webpage: "https://scholar.google.com/citations?user=1PBVqewAAAAJ&hl=en"
33-
email: "eannevel [at] andrew [dot] cmu [dot] edu"
34-
bio: Postdoctoral Research Associate, Mechanical Engineering
35-
36-
mguttenb:
37-
display_name: "Matt Guttenberg"
38-
role: alumni-phd
39-
bio: founder, INCEPTS
40-
email: mguttenb [at] alumni [dot] cmu [dot] edu
41-
webpage: "https://www.linkedin.com/in/matthew-guttenberg/"
42-
4313
robyg:
4414
display_name: "Roby Gauthier"
4515
role: postdoc
@@ -58,38 +28,15 @@ andreli:
5828

5929
# masters
6030

61-
yuanyih:
62-
display_name: "Yuanyi (Yara) Huang"
63-
role: masters
64-
image: img/people/yuanyih.png
65-
email: "yuanyih [at] andrew [dot] cmu [dot] com"
66-
bio: Chemical Engineering
67-
68-
nirmitd:
69-
display_name: "Nirmit Deshpande"
70-
role: masters
71-
image: img/people/nirmitd.jpg
72-
webpage: "https://www.nirmitdeshpande.com/"
73-
email: "nirmitd [at] andrew [dot] cmu [dot] edu"
74-
bio: EST&P
75-
7631

7732
# phd students, currently alphabetical
7833

79-
abills:
80-
display_name: "Alec Bills"
81-
role: phd
82-
image: img/people/abills.jpg
83-
bio: Mechanical Engineering
84-
email: abills [at] andrew [dot] cmu [dot] edu
85-
webpage: https://www.linkedin.com/in/alecbills/
86-
8734
awadell:
8835
display_name: "Alex Wadell"
8936
role: phd
9037
image: img/people/awadell.jpg
9138
bio: Mechanical Engineering
92-
email: awadell [at] andrew [dot] cmu [dot] edu
39+
email: awadell [at] umich [dot] edu
9340
webpage: https://www.linkedin.com/in/alexiuswadell/
9441

9542
asebasti:
@@ -151,21 +98,6 @@ jiankunp:
15198
bio: Mechanical Engineering
15299
email: jiankunp [at] andrew [dot] cmu [dot] edu
153100

154-
lkavalsk:
155-
display_name: "Lance Kavalsky"
156-
role: phd
157-
image: img/people/lkavalsk.jpg
158-
bio: Mechanical Engineering
159-
webpage: "https://lancekavalsky.github.io/"
160-
email: lkavalsk [at] andrew [dot] cmu [dot] edu
161-
162-
ltsiveri:
163-
display_name: "Lydia Tsiverioti"
164-
role: phd
165-
image: img/people/ltsiveri.jpeg
166-
bio: Mechanical Engineering
167-
email: ltsiveri [at] andrew [dot] cmu [dot] edu
168-
169101
mphuthi:
170102
display_name: "Mgcini Keith Phuthi"
171103
role: phd
@@ -189,14 +121,6 @@ shangzhu:
189121
webpage: "https://www.linkedin.com/in/shang-zhu-0935a4153/"
190122
email: shangzhu [at] andrew [dot] cmu [dot] edu
191123

192-
sgodse:
193-
display_name: "Shravan Godse"
194-
role: phd
195-
image: img/people/sgodse.jpg
196-
bio: Mechanical Engineering
197-
webpage: "https://shravangodse16.github.io/"
198-
email: sgodse [at] andrew [dot] cmu [dot] edu
199-
200124
tz4:
201125
display_name: "Tianyi Zhang"
202126
role: phd
@@ -205,28 +129,13 @@ tz4:
205129
webpage: "https://www.linkedin.com/in/tianyi-zhang-89b2ba163/"
206130
email: tz4 [at] andrew [dot] cmu [dot] edu
207131

208-
varunshankar:
209-
display_name: "Varun Shankar"
210-
role: phd
211-
image: img/people/varunshankar.jpg
212-
bio: Mechanical Engineering
213-
email: varunshankar [at] cmu [dot] edu
214-
215132
vazumah:
216133
display_name: "Victor Azumah"
217134
role: phd
218135
image: img/people/vazumah.png
219136
bio: Mechanical Engineering
220137
email: "vazumah [at] andrew [dot] cmu [dot] com"
221138

222-
vedantpu:
223-
display_name: "Vedant Puri"
224-
role: phd
225-
image: img/people/vedantpu.jpg
226-
webpage: "https://www.linkedin.com/in/vpuri3/"
227-
email: "vedantpu [at] andrew [dot] cmu [dot] com"
228-
bio: Research Assistant
229-
230139
cskelly:
231140
display_name: "Celia Kelly"
232141
role: phd
@@ -280,6 +189,36 @@ vsulzer:
280189
email: "valentin [at] ion-works [dot] com"
281190
webpage: "https://www.ion-works.com"
282191

192+
pinweng:
193+
display_name: "Pinwen Guan"
194+
role: alumni-postdoc
195+
image: img/people/pinweng.jpeg
196+
email: "pinweng [at] andrew [dot] cmu [dot] edu"
197+
bio: Postdoctoral Research Associate, Mechanical Engineering
198+
199+
sjtuzhanglei:
200+
display_name: "Lei Zhang"
201+
role: alumni-postdoc
202+
image: img/people/sjtuzhanglei.jpg
203+
webpage: "https://www.linkedin.com/in/lei-zhang-0b8aa126/"
204+
email: "sjtuzhanglei [at] gmail [dot] com"
205+
bio: Postdoctoral Research Associate, Mechanical Engineering
206+
207+
eannevel:
208+
display_name: "Emil Annevelink"
209+
role: alumni-postdoc
210+
image: img/people/eannevel.jpg
211+
webpage: "https://scholar.google.com/citations?user=1PBVqewAAAAJ&hl=en"
212+
email: "eannevel [at] andrew [dot] cmu [dot] edu"
213+
bio: Postdoctoral Research Associate, Mechanical Engineering
214+
215+
mguttenb:
216+
display_name: "Matt Guttenberg"
217+
role: alumni-postdoc
218+
bio: founder, INCEPTS
219+
email: mguttenb [at] alumni [dot] cmu [dot] edu
220+
webpage: "https://www.linkedin.com/in/matthew-guttenberg/"
221+
283222
# then phd, I think these are chronological
284223

285224
oleg:
@@ -365,6 +304,29 @@ ardave:
365304
email: ardave [at] cmu [dot] edu
366305
webpage: "https://scholar.google.com/citations?user=G4sH0egAAAAJ&hl=en"
367306

307+
varunshankar:
308+
display_name: "Varun Shankar"
309+
role: phd
310+
image: img/people/varunshankar.jpg
311+
bio: Mechanical Engineering
312+
email: varunshankar [at] cmu [dot] edu
313+
314+
abills:
315+
display_name: "Alec Bills"
316+
role: alumni-phd
317+
image: img/people/abills.jpg
318+
bio: Mechanical Engineering
319+
email: abills [at] andrew [dot] cmu [dot] edu
320+
webpage: https://www.linkedin.com/in/alecbills/
321+
322+
lkavalsk:
323+
display_name: "Lance Kavalsky"
324+
role: alumni-phd
325+
image: img/people/lkavalsk.jpg
326+
bio: Mechanical Engineering
327+
webpage: "https://lancekavalsky.github.io/"
328+
email: lkavalsk [at] andrew [dot] cmu [dot] edu
329+
368330
# masters, these ones are alphabetical currently
369331

370332
abhinav:
@@ -417,6 +379,22 @@ yoolhee:
417379
role: alumni-masters
418380
bio: Data Scientist at Citrine Informatics
419381

382+
yuanyih:
383+
display_name: "Yuanyi (Yara) Huang"
384+
role: alumni-masters
385+
image: img/people/yuanyih.png
386+
email: "yuanyih [at] andrew [dot] cmu [dot] com"
387+
bio: Chemical Engineering
388+
389+
nirmitd:
390+
display_name: "Nirmit Deshpande"
391+
role: alumni-masters
392+
image: img/people/nirmitd.jpg
393+
webpage: "https://www.nirmitdeshpande.com/"
394+
email: "nirmitd [at] andrew [dot] cmu [dot] edu"
395+
bio: EST&P
396+
397+
420398
# undergrads
421399

422400
andrewlee:
@@ -428,3 +406,11 @@ siying:
428406
display_name: "Siying Li"
429407
role: alumni-ugrad
430408
bio: PhD student at UC Berkeley
409+
410+
# Non-grads
411+
ltsiveri:
412+
display_name: "Lydia Tsiverioti"
413+
role: alumni
414+
image: img/people/ltsiveri.jpeg
415+
bio: Mechanical Engineering
416+
email: ltsiveri [at] andrew [dot] cmu [dot] edu

_layouts/default.html

+5-8
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
flex-column
2323
flex-md-row justify-content-md-between">
2424
<a href="{{ site.baseurl }}/" class="">
25-
<img src="{{ site.baseurl }}/img/cmu-lettermark-r.svg"
26-
alt="CMU Lettermark" id="logo">
25+
<img src="{{ site.baseurl }}/img/logo.svg"
26+
alt="University of Michigan Logo" id="logo">
2727
</a>
2828
<ul class="nav nav-pills justify-content-center">
2929

@@ -66,12 +66,9 @@ <h1>{{ page.title }}</h1>
6666
{{ content }}
6767

6868
<div class="footer">
69-
<p>
70-
Our group is primarily based in the <a href="https://www.cmu.edu/">Carnegie Mellon University</a> <a href="https://www.meche.engineering.cmu.edu/">Mechanical Engineering Department</a>, with additional affiliations in <a href="https://www.cmu.edu/engineering/materials/">Materials Science and Engineering</a>, <a href="https://www.cmu.edu/physics/">Physics</a>, and <a href="https://www.cheme.engineering.cmu.edu">Chemical Engineering</a>.
71-
</p>
72-
<p>
73-
<a href="https://www.cmu.edu/legal/">Legal Info</a>
74-
</p>
69+
<a href="https://www.engin.umich.edu/privacy-policies/">Privacy Policy</a> |
70+
<a href="https://oie.umich.edu/nondiscrimination-policy-notice/" target="blank" rel="noopener">Non-Discrimination Policy</a> |
71+
<a href="https://safety.engin.umich.edu/" target="blank" rel="noopener">Safety and Security</a>
7572
</div>
7673

7774
</div> <!-- /container -->

0 commit comments

Comments
 (0)