Skip to content

Commit 34c9615

Browse files
authored
Merge pull request #6 from simihablo/perf/site
site update
2 parents f4efc6c + 87f511d commit 34c9615

7 files changed

Lines changed: 105 additions & 13 deletions

File tree

.github/workflows/jekyll-gh-pages.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2-
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
1+
# Deploy the static site to GitHub Pages
2+
name: Deploy site to GitHub Pages
33

44
on:
55
# Runs on pushes targeting the default branch
@@ -28,15 +28,20 @@ jobs:
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v6
31-
- name: Setup Pages
32-
uses: actions/configure-pages@v5
33-
- name: Build with Jekyll
34-
uses: actions/jekyll-build-pages@v1
35-
with:
36-
source: ./
37-
destination: ./_site
31+
- name: Prepare static site
32+
run: |
33+
mkdir -p _site
34+
find . -mindepth 1 -maxdepth 1 \
35+
! -name '.git' \
36+
! -name '.github' \
37+
! -name '_site' \
38+
! -name 'README.md' \
39+
-exec cp -R {} _site/ \;
40+
touch _site/.nojekyll
3841
- name: Upload artifact
3942
uses: actions/upload-pages-artifact@v3
43+
with:
44+
path: ./_site
4045

4146
# Deployment job
4247
deploy:

.vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#1a1a1a",
4+
"activityBar.background": "#1a1a1a",
5+
"activityBar.foreground": "#e7e7e7",
6+
"activityBar.inactiveForeground": "#e7e7e799",
7+
"activityBarBadge.background": "#606020",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#1a1a1a",
11+
"statusBar.background": "#000000",
12+
"statusBar.foreground": "#e7e7e7",
13+
"statusBarItem.hoverBackground": "#1a1a1a",
14+
"statusBarItem.remoteBackground": "#000000",
15+
"statusBarItem.remoteForeground": "#e7e7e7",
16+
"titleBar.activeBackground": "#000000",
17+
"titleBar.activeForeground": "#e7e7e7",
18+
"titleBar.inactiveBackground": "#00000099",
19+
"titleBar.inactiveForeground": "#e7e7e799"
20+
}
21+
}

Gemfile.lock

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,78 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4+
addressable (2.9.0)
5+
public_suffix (>= 2.0.2, < 8.0)
6+
base64 (0.3.0)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.6)
9+
csv (3.3.5)
10+
em-websocket (0.5.3)
11+
eventmachine (>= 0.12.9)
12+
http_parser.rb (~> 0)
13+
eventmachine (1.2.7)
14+
ffi (1.17.4)
15+
forwardable-extended (2.6.0)
16+
google-protobuf (3.25.8-x86_64-darwin)
17+
http_parser.rb (0.8.1)
18+
i18n (1.14.8)
19+
concurrent-ruby (~> 1.0)
20+
jekyll (4.4.1)
21+
addressable (~> 2.4)
22+
base64 (~> 0.2)
23+
colorator (~> 1.0)
24+
csv (~> 3.0)
25+
em-websocket (~> 0.5)
26+
i18n (~> 1.0)
27+
jekyll-sass-converter (>= 2.0, < 4.0)
28+
jekyll-watch (~> 2.0)
29+
json (~> 2.6)
30+
kramdown (~> 2.3, >= 2.3.1)
31+
kramdown-parser-gfm (~> 1.0)
32+
liquid (~> 4.0)
33+
mercenary (~> 0.3, >= 0.3.6)
34+
pathutil (~> 0.9)
35+
rouge (>= 3.0, < 5.0)
36+
safe_yaml (~> 1.0)
37+
terminal-table (>= 1.8, < 4.0)
38+
webrick (~> 1.7)
39+
jekyll-sass-converter (3.0.0)
40+
sass-embedded (~> 1.54)
41+
jekyll-watch (2.2.1)
42+
listen (~> 3.0)
43+
json (2.19.5)
44+
kramdown (2.5.2)
45+
rexml (>= 3.4.4)
46+
kramdown-parser-gfm (1.1.0)
47+
kramdown (~> 2.0)
48+
liquid (4.0.4)
49+
listen (3.10.0)
50+
logger
51+
rb-fsevent (~> 0.10, >= 0.10.3)
52+
rb-inotify (~> 0.9, >= 0.9.10)
53+
logger (1.7.0)
54+
mercenary (0.4.0)
55+
pathutil (0.16.2)
56+
forwardable-extended (~> 2.6)
57+
public_suffix (5.1.1)
58+
rb-fsevent (0.11.2)
59+
rb-inotify (0.11.1)
60+
ffi (~> 1.0)
61+
rexml (3.4.4)
62+
rouge (4.7.0)
63+
safe_yaml (1.0.5)
64+
sass-embedded (1.63.6-x86_64-darwin)
65+
google-protobuf (~> 3.23)
66+
terminal-table (3.0.2)
67+
unicode-display_width (>= 1.1.1, < 3)
68+
unicode-display_width (2.6.0)
69+
webrick (1.9.2)
470

571
PLATFORMS
672
x86_64-darwin-19
773

874
DEPENDENCIES
75+
jekyll (= 4.4.1)
976

1077
BUNDLED WITH
1178
2.3.8

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
Intel Performance Platform for use on internal networks in assessment of cloud native traffic with a specific focus on efficiencies in the configuraiton of Envoy, Nighthawk, Meshery and Intel hardware tuning.
44

55
Note: _Using WASM HTTP parsing filters for Envoy, this site is dynamically rewritten per page load._
6+
7+
This repository is a static GitHub Pages site. It does not require Jekyll, Bundler, or a local Ruby toolchain to develop or deploy.

_config.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<body>
132132

133133
<div class="login-container">
134-
<img src="https://upload.wikimedia.org/wikipedia/commons/8/85/Intel_logo_2022.svg" alt="Intel Logo" class="logo">
134+
<img src=".intel.png" alt="Intel Logo" class="logo">
135135

136136
<h1>Intel Performance Platform</h1>
137137
<p class="subtitle">Meshery Remote Provider</p>

intel.png

3.95 KB
Loading

0 commit comments

Comments
 (0)