Open shashikantilager opened 1 month ago
This is the content of "deploy.yml" file
name: Deploy site
on:
push:
branches:
- master
- main
paths:
- "assets/**"
- "**.bib"
- "**.html"
- "**.js"
- "**.liquid"
- "**/*.md"
- "**.yml"
- "Gemfile"
- "Gemfile.lock"
- "!.github/workflows/axe.yml"
- "!.github/workflows/broken-links.yml"
- "!.github/workflows/deploy-docker-tag.yml"
- "!.github/workflows/deploy-image.yml"
- "!.github/workflows/docker-slim.yml"
- "!.github/workflows/lighthouse-badger.yml"
- "!.github/workflows/prettier.yml"
- "!lighthouse_results/**"
- "!CONTRIBUTING.md"
- "!CUSTOMIZE.md"
- "!FAQ.md"
- "!INSTALL.md"
- "!README.md"
pull_request:
branches:
- master
- main
paths:
- "assets/**"
- "**.bib"
- "**.html"
- "**.js"
- "**.liquid"
- "**/*.md"
- "**.yml"
- "Gemfile"
- "Gemfile.lock"
- "!.github/workflows/axe.yml"
- "!.github/workflows/broken-links.yml"
- "!.github/workflows/deploy-docker-tag.yml"
- "!.github/workflows/deploy-image.yml"
- "!.github/workflows/docker-slim.yml"
- "!.github/workflows/lighthouse-badger.yml"
- "!.github/workflows/prettier.yml"
- "!lighthouse_results/**"
- "!CONTRIBUTING.md"
- "!CUSTOMIZE.md"
- "!FAQ.md"
- "!INSTALL.md"
- "!README.md"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
# available images: https://github.com/actions/runner-images#available-images
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2.2"
bundler-cache: true
- name: Update _config.yml ⚙️
uses: fjogeleit/yaml-update-action@main
with:
commitChange: false
valueFile: "_config.yml"
propertyPath: "giscus.repo"
value: ${{ github.repository }}
- name: Install and Build 🔧
run: |
pip3 install --upgrade jupyter
export JEKYLL_ENV=production
bundle exec jekyll build
- name: Purge unused CSS 🧹
run: |
npm install -g purgecss
purgecss -c purgecss.config.js
- name: Deploy 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: _site
Can you make a test? Add this step in your deploy (maybe right after the Setup Ruby
):
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
Hi,
Thanks a ton. That error got resolved, it got new error, below is last few lines from trace
==
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/uglifier-4.2.1/lib/uglifier.rb:221:in `run_uglifyjs'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/uglifier-4.2.1/lib/uglifier.rb:166:in `compile'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:546:in `compress_javascript'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:502:in `block in process_script_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:501:in `map!'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:501:in `process_script_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:490:in `process_preserved_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:216:in `compress'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:79:in `output_html'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:32:in `output_compressed'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:182:in `write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:231:in `block in write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `block in each_site_file'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `each_site_file'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:230:in `write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:82:in `process'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:28:in `process_site'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:65:in `build'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:36:in `process'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `block in process_with_graceful_fail'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `process_with_graceful_fail'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:18:in `block (2 levels) in init_with_program'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `block in execute'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `execute'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/program.rb:44:in `go'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary.rb:21:in `program'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/exe/jekyll:15:in `<top (required)>'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `load'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `<top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:58:in `load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:58:in `kernel_load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:23:in `run'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:492:in `exec'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:34:in `dispatch'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:28:in `start'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/gems/3.2.0/gems/bundler-2.4.10/libexec/bundle:45:in `block in <top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/friendly_errors.rb:117:in `with_friendly_errors'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/gems/3.2.0/gems/bundler-2.4.10/libexec/bundle:33:in `<top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/bin/bundle:25:in `load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/bin/bundle:25:in `<main>'
Error: Process completed with exit code 1.
It also has workflow fail for "broken link" workflow and "prerttier code fomation" workflow before deploy workflow fail. Are these related with each other?
Copy the whole trace here, just this part doesn't contain useful information.
Are these related with each other?
Not at all. Check our FAQ for this information. Note that both of them are not needed to deploy your site, they are only for quality control.
Thanks, the stack trace is rather quite long.
Run pip3 install --upgrade jupyter
Collecting jupyter
Downloading jupyter-1.1.1-py2.py3-none-any.whl.metadata (2.0 kB)
Collecting notebook (from jupyter)
Downloading notebook-7.2.2-py3-none-any.whl.metadata (10 kB)
Collecting jupyter-console (from jupyter)
Downloading jupyter_console-6.6.3-py3-none-any.whl.metadata (5.8 kB)
Collecting nbconvert (from jupyter)
Downloading nbconvert-7.16.4-py3-none-any.whl.metadata (8.5 kB)
Collecting ipykernel (from jupyter)
Downloading ipykernel-6.29.5-py3-none-any.whl.metadata (6.3 kB)
Collecting ipywidgets (from jupyter)
Downloading ipywidgets-8.1.5-py3-none-any.whl.metadata (2.3 kB)
Collecting jupyterlab (from jupyter)
Downloading jupyterlab-4.2.5-py3-none-any.whl.metadata (16 kB)
Collecting comm>=0.1.1 (from ipykernel->jupyter)
Downloading comm-0.2.2-py3-none-any.whl.metadata (3.7 kB)
Collecting debugpy>=1.6.5 (from ipykernel->jupyter)
Downloading debugpy-1.8.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.1 kB)
Collecting ipython>=7.23.1 (from ipykernel->jupyter)
Downloading ipython-8.28.0-py3-none-any.whl.metadata (5.0 kB)
Collecting jupyter-client>=6.1.12 (from ipykernel->jupyter)
Downloading jupyter_client-8.6.3-py3-none-any.whl.metadata (8.3 kB)
Collecting jupyter-core!=5.0.*,>=4.12 (from ipykernel->jupyter)
Downloading jupyter_core-5.7.2-py3-none-any.whl.metadata (3.4 kB)
Collecting matplotlib-inline>=0.1 (from ipykernel->jupyter)
Downloading matplotlib_inline-0.1.7-py3-none-any.whl.metadata (3.9 kB)
Collecting nest-asyncio (from ipykernel->jupyter)
Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB)
Collecting packaging (from ipykernel->jupyter)
Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
Collecting psutil (from ipykernel->jupyter)
Downloading psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB)
Collecting pyzmq>=24 (from ipykernel->jupyter)
Downloading pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.metadata (6.2 kB)
Collecting tornado>=6.1 (from ipykernel->jupyter)
Downloading tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.5 kB)
Collecting traitlets>=5.4.0 (from ipykernel->jupyter)
Downloading traitlets-5.14.3-py3-none-any.whl.metadata (10 kB)
Collecting widgetsnbextension~=4.0.12 (from ipywidgets->jupyter)
Downloading widgetsnbextension-4.0.13-py3-none-any.whl.metadata (1.6 kB)
Collecting jupyterlab-widgets~=3.0.12 (from ipywidgets->jupyter)
Downloading jupyterlab_widgets-3.0.13-py3-none-any.whl.metadata (4.1 kB)
Collecting prompt-toolkit>=3.0.30 (from jupyter-console->jupyter)
Downloading prompt_toolkit-3.0.48-py3-none-any.whl.metadata (6.4 kB)
Collecting pygments (from jupyter-console->jupyter)
Downloading pygments-2.18.0-py3-none-any.whl.metadata (2.5 kB)
Collecting async-lru>=1.0.0 (from jupyterlab->jupyter)
Downloading async_lru-2.0.4-py3-none-any.whl.metadata (4.5 kB)
Collecting httpx>=0.25.0 (from jupyterlab->jupyter)
Downloading httpx-0.27.2-py3-none-any.whl.metadata (7.1 kB)
Collecting jinja2>=3.0.3 (from jupyterlab->jupyter)
Downloading jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB)
Collecting jupyter-lsp>=2.0.0 (from jupyterlab->jupyter)
Downloading jupyter_lsp-2.2.5-py3-none-any.whl.metadata (1.8 kB)
Collecting jupyter-server<3,>=2.4.0 (from jupyterlab->jupyter)
Downloading jupyter_server-2.14.2-py3-none-any.whl.metadata (8.4 kB)
Collecting jupyterlab-server<3,>=2.27.1 (from jupyterlab->jupyter)
Downloading jupyterlab_server-2.27.3-py3-none-any.whl.metadata (5.9 kB)
Collecting notebook-shim>=0.2 (from jupyterlab->jupyter)
Downloading notebook_shim-0.2.4-py3-none-any.whl.metadata (4.0 kB)
Collecting setuptools>=40.1.0 (from jupyterlab->jupyter)
Downloading setuptools-75.1.0-py3-none-any.whl.metadata (6.9 kB)
Collecting beautifulsoup4 (from nbconvert->jupyter)
Downloading beautifulsoup4-4.12.3-py3-none-any.whl.metadata (3.8 kB)
Collecting bleach!=5.0.0 (from nbconvert->jupyter)
Downloading bleach-6.1.0-py3-none-any.whl.metadata (30 kB)
Collecting defusedxml (from nbconvert->jupyter)
Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
Collecting jupyterlab-pygments (from nbconvert->jupyter)
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl.metadata (4.4 kB)
Collecting markupsafe>=2.0 (from nbconvert->jupyter)
Downloading MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)
Collecting mistune<4,>=2.0.3 (from nbconvert->jupyter)
Downloading mistune-3.0.2-py3-none-any.whl.metadata (1.7 kB)
Collecting nbclient>=0.5.0 (from nbconvert->jupyter)
Downloading nbclient-0.10.0-py3-none-any.whl.metadata (7.8 kB)
Collecting nbformat>=5.7 (from nbconvert->jupyter)
Downloading nbformat-5.10.4-py3-none-any.whl.metadata (3.6 kB)
Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter)
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl.metadata (9.0 kB)
Collecting tinycss2 (from nbconvert->jupyter)
Downloading tinycss2-1.3.0-py3-none-any.whl.metadata (3.0 kB)
Collecting six>=1.9.0 (from bleach!=5.0.0->nbconvert->jupyter)
Downloading six-1.16.0-py2.py3-none-any.whl.metadata (1.8 kB)
Collecting webencodings (from bleach!=5.0.0->nbconvert->jupyter)
Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
Collecting anyio (from httpx>=0.25.0->jupyterlab->jupyter)
Downloading anyio-4.6.0-py3-none-any.whl.metadata (4.6 kB)
Collecting certifi (from httpx>=0.25.0->jupyterlab->jupyter)
Downloading certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
Collecting httpcore==1.* (from httpx>=0.25.0->jupyterlab->jupyter)
Downloading httpcore-1.0.6-py3-none-any.whl.metadata (21 kB)
Collecting idna (from httpx>=0.25.0->jupyterlab->jupyter)
Downloading idna-3.10-py3-none-any.whl.metadata (10 kB)
Collecting sniffio (from httpx>=0.25.0->jupyterlab->jupyter)
Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB)
Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx>=0.25.0->jupyterlab->jupyter)
Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB)
Collecting decorator (from ipython>=7.23.1->ipykernel->jupyter)
Downloading decorator-5.1.1-py3-none-any.whl.metadata (4.0 kB)
Collecting jedi>=0.16 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading jedi-0.19.1-py2.py3-none-any.whl.metadata (22 kB)
Collecting stack-data (from ipython>=7.23.1->ipykernel->jupyter)
Downloading stack_data-0.6.3-py3-none-any.whl.metadata (18 kB)
Collecting pexpect>4.3 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
Collecting python-dateutil>=2.8.2 (from jupyter-client>=6.1.12->ipykernel->jupyter)
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
Collecting platformdirs>=2.5 (from jupyter-core!=5.0.*,>=4.12->ipykernel->jupyter)
Downloading platformdirs-4.3.6-py3-none-any.whl.metadata (11 kB)
Collecting argon2-cffi>=21.1 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading argon2_cffi-23.1.0-py3-none-any.whl.metadata (5.2 kB)
Collecting jupyter-events>=0.9.0 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jupyter_events-0.10.0-py3-none-any.whl.metadata (5.9 kB)
Collecting jupyter-server-terminals>=0.4.4 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jupyter_server_terminals-0.5.3-py3-none-any.whl.metadata (5.6 kB)
Collecting overrides>=5.0 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading overrides-7.7.0-py3-none-any.whl.metadata (5.8 kB)
Collecting prometheus-client>=0.9 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading prometheus_client-0.21.0-py3-none-any.whl.metadata (1.8 kB)
Collecting send2trash>=1.8.2 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading Send2Trash-1.8.3-py3-none-any.whl.metadata (4.0 kB)
Collecting terminado>=0.8.3 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading terminado-0.18.1-py3-none-any.whl.metadata (5.8 kB)
Collecting websocket-client>=1.7 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading websocket_client-1.8.0-py3-none-any.whl.metadata (8.0 kB)
Collecting babel>=2.10 (from jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading babel-2.16.0-py3-none-any.whl.metadata (1.5 kB)
Collecting json5>=0.9.0 (from jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading json5-0.9.25-py3-none-any.whl.metadata (30 kB)
Collecting jsonschema>=4.18.0 (from jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB)
Collecting requests>=2.31 (from jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
Collecting fastjsonschema>=2.15 (from nbformat>=5.7->nbconvert->jupyter)
Downloading fastjsonschema-2.20.0-py3-none-any.whl.metadata (2.1 kB)
Collecting wcwidth (from prompt-toolkit>=3.0.30->jupyter-console->jupyter)
Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB)
Collecting soupsieve>1.2 (from beautifulsoup4->nbconvert->jupyter)
Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
Collecting argon2-cffi-bindings (from argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB)
Collecting parso<0.9.0,>=0.8.3 (from jedi>=0.16->ipython>=7.23.1->ipykernel->jupyter)
Downloading parso-0.8.4-py2.py3-none-any.whl.metadata (7.7 kB)
Collecting attrs>=22.2.0 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
Collecting jsonschema-specifications>=2023.03.6 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading jsonschema_specifications-2023.12.1-py3-none-any.whl.metadata (3.0 kB)
Collecting referencing>=0.28.4 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading referencing-0.35.1-py3-none-any.whl.metadata (2.8 kB)
Collecting rpds-py>=0.7.1 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.2 kB)
Collecting python-json-logger>=2.0.4 (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading python_json_logger-2.0.7-py3-none-any.whl.metadata (6.5 kB)
Collecting pyyaml>=5.3 (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)
Collecting rfc3339-validator (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl.metadata (1.5 kB)
Collecting rfc3986-validator>=0.1.1 (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl.metadata (1.7 kB)
Collecting ptyprocess>=0.5 (from pexpect>4.3->ipython>=7.23.1->ipykernel->jupyter)
Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
Collecting charset-normalizer<4,>=2 (from requests>=2.31->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
Collecting urllib3<3,>=1.21.1 (from requests>=2.31->jupyterlab-server<3,>=2.27.1->jupyterlab->jupyter)
Downloading urllib3-2.2.3-py3-none-any.whl.metadata (6.5 kB)
Collecting executing>=1.2.0 (from stack-data->ipython>=7.23.1->ipykernel->jupyter)
Downloading executing-2.1.0-py2.py3-none-any.whl.metadata (8.9 kB)
Collecting asttokens>=2.1.0 (from stack-data->ipython>=7.23.1->ipykernel->jupyter)
Downloading asttokens-2.4.1-py2.py3-none-any.whl.metadata (5.2 kB)
Collecting pure-eval (from stack-data->ipython>=7.23.1->ipykernel->jupyter)
Downloading pure_eval-0.2.3-py3-none-any.whl.metadata (6.3 kB)
Collecting fqdn (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading fqdn-1.5.1-py3-none-any.whl.metadata (1.4 kB)
Collecting isoduration (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading isoduration-20.11.0-py3-none-any.whl.metadata (5.7 kB)
Collecting jsonpointer>1.13 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB)
Collecting uri-template (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading uri_template-1.3.0-py3-none-any.whl.metadata (8.8 kB)
Collecting webcolors>=24.6.0 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading webcolors-24.8.0-py3-none-any.whl.metadata (2.6 kB)
Collecting cffi>=1.0.1 (from argon2-cffi-bindings->argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
Collecting pycparser (from cffi>=1.0.1->argon2-cffi-bindings->argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
Collecting arrow>=0.15.0 (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading arrow-1.3.0-py3-none-any.whl.metadata (7.5 kB)
Collecting types-python-dateutil>=2.8.10 (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading types_python_dateutil-2.9.0.20241003-py3-none-any.whl.metadata (1.9 kB)
Downloading jupyter-1.1.1-py2.py3-none-any.whl (2.7 kB)
Downloading ipykernel-6.29.5-py3-none-any.whl (117 kB)
Downloading ipywidgets-8.1.5-py3-none-any.whl (139 kB)
Downloading jupyter_console-6.6.3-py3-none-any.whl (24 kB)
Downloading jupyterlab-4.2.5-py3-none-any.whl (11.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.6/11.6 MB 157.8 MB/s eta 0:00:00
Downloading nbconvert-7.16.4-py3-none-any.whl (257 kB)
Downloading notebook-7.2.2-py3-none-any.whl (5.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 201.5 MB/s eta 0:00:00
Downloading async_lru-2.0.4-py3-none-any.whl (6.1 kB)
Downloading bleach-6.1.0-py3-none-any.whl (162 kB)
Downloading comm-0.2.2-py3-none-any.whl (7.2 kB)
Downloading debugpy-1.8.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/4.2 MB 185.9 MB/s eta 0:00:00
Downloading httpx-0.27.2-py3-none-any.whl (76 kB)
Downloading httpcore-1.0.6-py3-none-any.whl (78 kB)
Downloading ipython-8.28.0-py3-none-any.whl (819 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 819.5/819.5 kB 113.1 MB/s eta 0:00:00
Downloading jinja2-3.1.4-py3-none-any.whl (133 kB)
Downloading jupyter_client-8.6.3-py3-none-any.whl (106 kB)
Downloading jupyter_core-5.7.2-py3-none-any.whl (28 kB)
Downloading jupyter_lsp-2.2.5-py3-none-any.whl (69 kB)
Downloading jupyter_server-2.14.2-py3-none-any.whl (383 kB)
Downloading jupyterlab_server-2.27.3-py3-none-any.whl (59 kB)
Downloading jupyterlab_widgets-3.0.13-py3-none-any.whl (214 kB)
Downloading MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28 kB)
Downloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB)
Downloading mistune-3.0.2-py3-none-any.whl (47 kB)
Downloading nbclient-0.10.0-py3-none-any.whl (25 kB)
Downloading nbformat-5.10.4-py3-none-any.whl (78 kB)
Downloading notebook_shim-0.2.4-py3-none-any.whl (13 kB)
Downloading packaging-24.1-py3-none-any.whl (53 kB)
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl (8.7 kB)
Downloading prompt_toolkit-3.0.48-py3-none-any.whl (386 kB)
Downloading pygments-2.18.0-py3-none-any.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 132.9 MB/s eta 0:00:00
Downloading pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (860 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 860.6/860.6 kB 107.2 MB/s eta 0:00:00
Downloading setuptools-75.1.0-py3-none-any.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 118.7 MB/s eta 0:00:00
Downloading tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436 kB)
Downloading traitlets-5.14.3-py3-none-any.whl (85 kB)
Downloading widgetsnbextension-4.0.13-py3-none-any.whl (2.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 166.3 MB/s eta 0:00:00
Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB)
Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl (15 kB)
Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB)
Downloading psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290 kB)
Downloading tinycss2-1.3.0-py3-none-any.whl (22 kB)
Downloading anyio-4.6.0-py3-none-any.whl (89 kB)
Downloading argon2_cffi-23.1.0-py3-none-any.whl (15 kB)
Downloading babel-2.16.0-py3-none-any.whl (9.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/9.6 MB 206.3 MB/s eta 0:00:00
Downloading fastjsonschema-2.20.0-py3-none-any.whl (23 kB)
Downloading idna-3.10-py3-none-any.whl (70 kB)
Downloading jedi-0.19.1-py2.py3-none-any.whl (1.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 151.4 MB/s eta 0:00:00
Downloading json5-0.9.25-py3-none-any.whl (30 kB)
Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB)
Downloading jupyter_events-0.10.0-py3-none-any.whl (18 kB)
Downloading jupyter_server_terminals-0.5.3-py3-none-any.whl (13 kB)
Downloading overrides-7.7.0-py3-none-any.whl (17 kB)
Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
Downloading platformdirs-4.3.6-py3-none-any.whl (18 kB)
Downloading prometheus_client-0.21.0-py3-none-any.whl (54 kB)
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
Downloading requests-2.32.3-py3-none-any.whl (64 kB)
Downloading certifi-2024.8.30-py3-none-any.whl (167 kB)
Downloading Send2Trash-1.8.3-py3-none-any.whl (18 kB)
Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
Downloading sniffio-1.3.1-py3-none-any.whl (10 kB)
Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
Downloading terminado-0.18.1-py3-none-any.whl (14 kB)
Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
Downloading websocket_client-1.8.0-py3-none-any.whl (58 kB)
Downloading decorator-5.1.1-py3-none-any.whl (9.1 kB)
Downloading stack_data-0.6.3-py3-none-any.whl (24 kB)
Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB)
Downloading asttokens-2.4.1-py2.py3-none-any.whl (27 kB)
Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
Downloading charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141 kB)
Downloading executing-2.1.0-py2.py3-none-any.whl (25 kB)
Downloading h11-0.14.0-py3-none-any.whl (58 kB)
Downloading jsonschema_specifications-2023.12.1-py3-none-any.whl (18 kB)
Downloading parso-0.8.4-py2.py3-none-any.whl (103 kB)
Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
Downloading python_json_logger-2.0.7-py3-none-any.whl (8.1 kB)
Downloading PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 767.5/767.5 kB 103.4 MB/s eta 0:00:00
Downloading referencing-0.35.1-py3-none-any.whl (26 kB)
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl (4.2 kB)
Downloading rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357 kB)
Downloading urllib3-2.2.3-py3-none-any.whl (126 kB)
Downloading argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (86 kB)
Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB)
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl (3.5 kB)
Downloading cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479 kB)
Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB)
Downloading webcolors-24.8.0-py3-none-any.whl (15 kB)
Downloading fqdn-1.5.1-py3-none-any.whl (9.1 kB)
Downloading isoduration-20.11.0-py3-none-any.whl (11 kB)
Downloading uri_template-1.3.0-py3-none-any.whl (11 kB)
Downloading arrow-1.3.0-py3-none-any.whl (66 kB)
Downloading pycparser-2.22-py3-none-any.whl (117 kB)
Downloading types_python_dateutil-2.9.0.20241003-py3-none-any.whl (9.7 kB)
Installing collected packages: webencodings, wcwidth, pure-eval, ptyprocess, fastjsonschema, widgetsnbextension, websocket-client, webcolors, urllib3, uri-template, types-python-dateutil, traitlets, tornado, tinycss2, soupsieve, sniffio, six, setuptools, send2trash, rpds-py, rfc3986-validator, pyzmq, pyyaml, python-json-logger, pygments, pycparser, psutil, prompt-toolkit, prometheus-client, platformdirs, pexpect, parso, pandocfilters, packaging, overrides, nest-asyncio, mistune, markupsafe, jupyterlab-widgets, jupyterlab-pygments, jsonpointer, json5, idna, h11, fqdn, executing, defusedxml, decorator, debugpy, charset-normalizer, certifi, babel, attrs, async-lru, terminado, rfc3339-validator, requests, referencing, python-dateutil, matplotlib-inline, jupyter-core, jinja2, jedi, httpcore, comm, cffi, bleach, beautifulsoup4, asttokens, anyio, stack-data, jupyter-server-terminals, jupyter-client, jsonschema-specifications, httpx, arrow, argon2-cffi-bindings, jsonschema, isoduration, ipython, argon2-cffi, nbformat, ipywidgets, ipykernel, nbclient, jupyter-events, jupyter-console, nbconvert, jupyter-server, notebook-shim, jupyterlab-server, jupyter-lsp, jupyterlab, notebook, jupyter
Successfully installed anyio-4.6.0 argon2-cffi-23.1.0 argon2-cffi-bindings-21.2.0 arrow-1.3.0 asttokens-2.4.1 async-lru-2.0.4 attrs-24.2.0 babel-2.16.0 beautifulsoup4-4.12.3 bleach-6.1.0 certifi-2024.8.30 cffi-1.17.1 charset-normalizer-3.3.2 comm-0.2.2 debugpy-1.8.6 decorator-5.1.1 defusedxml-0.7.1 executing-2.1.0 fastjsonschema-2.20.0 fqdn-1.5.1 h11-0.14.0 httpcore-1.0.6 httpx-0.27.2 idna-3.10 ipykernel-6.29.5 ipython-8.28.0 ipywidgets-8.1.5 isoduration-20.11.0 jedi-0.19.1 jinja2-3.1.4 json5-0.9.25 jsonpointer-3.0.0 jsonschema-4.23.0 jsonschema-specifications-2023.12.1 jupyter-1.1.1 jupyter-client-8.6.3 jupyter-console-6.6.3 jupyter-core-5.7.2 jupyter-events-0.10.0 jupyter-lsp-2.2.5 jupyter-server-2.14.2 jupyter-server-terminals-0.5.3 jupyterlab-4.2.5 jupyterlab-pygments-0.3.0 jupyterlab-server-2.27.3 jupyterlab-widgets-3.0.13 markupsafe-2.1.5 matplotlib-inline-0.1.7 mistune-3.0.2 nbclient-0.10.0 nbconvert-7.16.4 nbformat-5.10.4 nest-asyncio-1.6.0 notebook-7.2.2 notebook-shim-0.2.4 overrides-7.7.0 packaging-24.1 pandocfilters-1.5.1 parso-0.8.4 pexpect-4.9.0 platformdirs-4.3.6 prometheus-client-0.21.0 prompt-toolkit-3.0.48 psutil-6.0.0 ptyprocess-0.7.0 pure-eval-0.2.3 pycparser-2.22 pygments-2.18.0 python-dateutil-2.9.0.post0 python-json-logger-2.0.7 pyyaml-6.0.2 pyzmq-26.2.0 referencing-0.35.1 requests-2.32.3 rfc3339-validator-0.1.4 rfc3986-validator-0.1.1 rpds-py-0.20.0 send2trash-1.8.3 setuptools-75.1.0 six-1.16.0 sniffio-1.3.1 soupsieve-2.6 stack-data-0.6.3 terminado-0.18.1 tinycss2-1.3.0 tornado-6.4.1 traitlets-5.14.3 types-python-dateutil-2.9.0.20241003 uri-template-1.3.0 urllib3-2.2.3 wcwidth-0.2.13 webcolors-24.8.0 webencodings-0.5.1 websocket-client-1.8.0 widgetsnbextension-4.0.13
Configuration file: /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_config.yml
Source: /home/runner/work/shashikantilager.github.io/shashikantilager.github.io
Destination: /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site
Incremental build: disabled. Enable with --incremental
Generating...
DEPRECATION WARNING: to_time will always preserve the timezone offset of the receiver in Rails 8.0. To opt in to the new behavior, set `ActiveSupport.to_time_preserves_timezone = true`. (called from load at /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25)
Fetching external posts from medium.com:
...fetching https://medium.com/@al-folio/displaying-external-posts-on-your-al-folio-blog-b60a1d241a0a?source=rss-17feae71c3c4------2
Fetching external posts from Google Blog:
...fetching https://blog.google/technology/ai/google-gemini-update-flash-ai-assistant-io-2024/
Jekyll Feed: Generating feed for posts
Imagemagick: Searching files in /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/img/
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/1-480.webp"
Imagemagick: Command returned pid 2078 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/1-800.webp"
Imagemagick: Command returned pid 2080 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/1-1400.webp"
Imagemagick: Command returned pid 2081 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/10-480.webp"
Imagemagick: Command returned pid 2082 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/10-800.webp"
Imagemagick: Command returned pid 2083 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/10-1400.webp"
Imagemagick: Command returned pid 2084 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/11-480.webp"
Imagemagick: Command returned pid 2085 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/11-800.webp"
Imagemagick: Command returned pid 2086 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/11-1400.webp"
Imagemagick: Command returned pid 2087 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/12-480.webp"
Imagemagick: Command returned pid 2088 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/12-800.webp"
Imagemagick: Command returned pid 2089 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/12-1400.webp"
Imagemagick: Command returned pid 2090 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/2-480.webp"
Imagemagick: Command returned pid 2091 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/2-800.webp"
Imagemagick: Command returned pid 2092 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/2-1400.webp"
Imagemagick: Command returned pid 2093 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/3-480.webp"
Imagemagick: Command returned pid 2094 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/3-800.webp"
Imagemagick: Command returned pid 2095 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/3-1400.webp"
Imagemagick: Command returned pid 2096 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/4-480.webp"
Imagemagick: Command returned pid 2097 exit 127 with error sh: 1: convert: not found
Imagemagick: Command returned pid 2098 exit 127 with error sh: 1: convert: not found
Imagemagick: Command returned pid 2099 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/4-800.webp"
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/4-1400.webp"
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/5-480.webp"
Imagemagick: Command returned pid 2100 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/5-800.webp"
Imagemagick: Command returned pid 2101 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/5-1400.webp"
Imagemagick: Command returned pid 2102 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/6-480.webp"
Imagemagick: Command returned pid 2103 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/6-800.webp"
Imagemagick: Command returned pid 2104 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/6-1400.webp"
Imagemagick: Command returned pid 2105 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/7-480.webp"
Imagemagick: Command returned pid 2106 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/7-800.webp"
Imagemagick: Command returned pid 2107 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/7-1400.webp"
Imagemagick: Command returned pid 2108 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/8-480.webp"
Imagemagick: Command returned pid 2109 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/8-800.webp"
Imagemagick: Command returned pid 2110 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/8-1400.webp"
Imagemagick: Command returned pid 2111 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/9-480.webp"
Imagemagick: Command returned pid 2112 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/9-800.webp"
Imagemagick: Command returned pid 2113 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/9-1400.webp"
Imagemagick: Command returned pid 2114 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic-480.webp"
Imagemagick: Command returned pid 2115 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic-800.webp"
Imagemagick: Command returned pid 2116 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic-1400.webp"
Imagemagick: Command returned pid 2117 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_2024-480.webp"
Imagemagick: Command returned pid 2118 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_2024-800.webp"
Imagemagick: Command returned pid 2119 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_2024-1400.webp"
Imagemagick: Command returned pid 2120 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_color-480.webp"
Imagemagick: Command returned pid 2121 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_color-800.webp"
Imagemagick: Command returned pid 2122 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_color-1400.webp"
Imagemagick: Command returned pid 2123 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_shashi1-480.webp"
Imagemagick: Command returned pid 2124 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_shashi1-800.webp"
Imagemagick: Command returned pid 2125 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/prof_pic_shashi1-1400.webp"
Imagemagick: Command returned pid 2126 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/brownian-motion-480.webp"
Imagemagick: Command returned pid 2127 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/brownian-motion-800.webp"
Imagemagick: Command returned pid 2128 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/brownian-motion-1400.webp"
Imagemagick: Command returned pid 2129 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/wave-mechanics-480.webp"
Imagemagick: Command returned pid 2130 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/wave-mechanics-800.webp"
Imagemagick: Command returned pid 2131 exit 127 with error sh: 1: convert: not found
Imagemagick: Generating image "/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/_site/assets/img/publication_preview/wave-mechanics-1400.webp"
Imagemagick: Command returned pid 2132 exit 127 with error sh: 1: convert: not found
Imagemagick: Generated 54 file(s)
AutoPages: Disabled/Not configured in site.config.
Pagination: Disabled in site.config.
DEPRECATION WARNING: lighten() is deprecated. Suggestions:
color.scale($color, $lightness: 44.5804195804%)
color.adjust($color, $lightness: 25%)
More info: https://sass-lang.com/d/color-functions
╷
13 │ $light-cyan-color: lighten($cyan-color, 25%);
│ ^^^^^^^^^^^^^^^^^^^^^^^^^
╵
_variables.scss 13:20 @import
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/css/main.scss 7:3 root stylesheet
DEPRECATION WARNING: lighten() is deprecated. Suggestions:
color.scale($color, $lightness: 39.84375%)
color.adjust($color, $lightness: 25%)
More info: https://sass-lang.com/d/color-functions
╷
20 │ $light-purple-color: lighten($purple-color, 25%);
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
╵
_variables.scss 20:22 @import
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/css/main.scss 7:3 root stylesheet
DEPRECATION WARNING: lighten() is deprecated. Suggestions:
color.scale($color, $lightness: 81.6%)
color.adjust($color, $lightness: 40%)
More info: https://sass-lang.com/d/color-functions
╷
26 │ $grey-color-light: lighten($grey-color, 40%);
│ ^^^^^^^^^^^^^^^^^^^^^^^^^
╵
_variables.scss 26:20 @import
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/css/main.scss 7:3 root stylesheet
DEPRECATION WARNING: red() is deprecated. Suggestion:
color.channel($color, "red", $space: rgb)
More info: https://sass-lang.com/d/color-functions
╷
20 │ --global-back-to-top-bg-color: rgba(#{red($black-color)}, #{green($black-color)}, #{blue($black-color)}, 0.4);
│ ^^^^^^^^^^^^^^^^^
╵
_themes.scss 20:41 @import
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/css/main.scss 8:3 root stylesheet
DEPRECATION WARNING: green() is deprecated. Suggestion:
color.channel($color, "green", $space: rgb)
More info: https://sass-lang.com/d/color-functions
╷
20 │ --global-back-to-top-bg-color: rgba(#{red($black-color)}, #{green($black-color)}, #{blue($black-color)}, 0.4);
│ ^^^^^^^^^^^^^^^^^^^
╵
_themes.scss 20:63 @import
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/assets/css/main.scss 8:3 root stylesheet
WARNING: 4 repetitive deprecation warnings omitted.
Run in verbose mode to see all warnings.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
Warning: Empty `slug` generated for ''.
[NbConvertApp] Converting notebook /tmp/jekyll-jupyter-notebook20241007-2076-s6fh4r.ipynb to html
------------------------------------------------
Jekyll 4.3.4 Please append `--trace` to the `build` command
for any additional information or backtrace.
------------------------------------------------
/home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/uglifier-4.2.1/lib/uglifier.rb:291:in `parse_result': Unterminated string constant (Uglifier::Error)
--
408 },
409 },{id: "news-joined-the-university-of-amsterdam-as-an-lt-strong-gt-assistant-professor-lt-strong-gt-i-am-part-of-the-mns-group-at-the-informatics-institute",
410 title: 'Joined the University of Amsterdam as an <strong>Assistant Professor</strong>. I am part of the MNS group at the Informatics Institute.',
411 description: "",
412 section: "News",},{id: "news-i-will-be-working-as-a-lt-strong-gt-visiting-research-scientist-lt-strong-gt-jun-2024-aug-2024-at-ibm-t-j-watson-research-center-hybrid-cloud-infrastructure-team-york-town-heights-new-york-usa",
413 title: 'I will be working as a <strong>visiting research scientist</strong> (Jun 2024- Aug 2024) at IBM T.J. Watson Research Center, Hybrid Cloud Infrastructure team, York Town Heights, New York, USA.',
414 description: "",
415 section: "News",},{id: "news-our-paper-lt-strong-gt-abba-vsm-time-series-classification-using-symbolic-representation-on-the-edge-lt-strong-gt-is-accepted-at-icsoc-24-congrats-to-meerzhan-tada-lt-arxiv-link-gt",
=> title: 'Our paper <strong> ABBA-VSM: Time Series Classification using Symbolic Representation on the Edge</strong> is accepted at ICSOC 24. Congrats to Meerzhan <img class="emoji" title=":tada:" alt=":tada:" src="https://github.githubassets.com/images/icons/emoji/unicode/1f389.png" height="20" width="20">.
417 <!-- [Arxiv link]() -->',
418 description: "",
419 section: "News",},{id: "news-our-paper-lt-strong-gt-fligan-enhancing-federated-learning-with-incomplete-data-using-gan-lt-strong-gt-is-accepted-at-edgesys-24-colocated-with-eurosys-24-congratulations-to-paul-tada-lt-a-href-quot-https-arxiv-org-abs-2403-16930-quot-gt-arxiv-link-lt-a-gt",
420 title: 'Our paper <strong> FLIGAN: Enhancing Federated Learning with Incomplete Data Using GAN</strong> is accepted at EdgeSys 24, colocated with EuroSys 24. Congratulations to Paul <img class="emoji" title=":tada:" alt=":tada:" src="https://github.githubassets.com/images/icons/emoji/unicode/1f389.png" height="20" width="20">. <a href="https://arxiv.org/abs/2403.16930">Arxiv link</a>',
421 description: "",
422 section: "News",},{id: "news-our-paper-lt-strong-gt-a-data-driven-analysis-of-a-cloud-data-center-statistical-characterization-of-workload-energy-and-temperature-lt-strong-gt-has-recieved-lt-code-class-quot-language-plaintext-highlighter-rouge-quot-gt-best-paper-award-lt-code-gt-acm-ieee-ucc-23-trophy",
423 title: 'Our paper <strong> A Data-driven Analysis of a Cloud Data Center: Statistical Characterization of Workload, Energy and Temperature</strong> has recieved <code class="language-plaintext highlighter-rouge">Best paper award</code> @ ACM/IEEE UCC 23. <img class="emoji" title=":trophy:" alt=":trophy:" src="https://github.githubassets.com/images/icons/emoji/unicode/1f3c6.png" height="20" width="20">',
424 description: "",
==
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/uglifier-4.2.1/lib/uglifier.rb:221:in `run_uglifyjs'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/uglifier-4.2.1/lib/uglifier.rb:166:in `compile'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:546:in `compress_javascript'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:502:in `block in process_script_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:501:in `map!'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:501:in `process_script_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:490:in `process_preserved_blocks'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/htmlcompressor-0.4.0/lib/htmlcompressor/compressor.rb:216:in `compress'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:79:in `output_html'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:32:in `output_compressed'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-minifier-0.1.10/lib/jekyll-minifier.rb:182:in `write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:231:in `block in write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `block in each_site_file'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:363:in `each_site_file'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:230:in `write'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/site.rb:82:in `process'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:28:in `process_site'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:65:in `build'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:36:in `process'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `block in process_with_graceful_fail'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `process_with_graceful_fail'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/lib/jekyll/commands/build.rb:18:in `block (2 levels) in init_with_program'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `block in execute'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `each'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `execute'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/program.rb:44:in `go'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary.rb:21:in `program'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.4/exe/jekyll:15:in `<top (required)>'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `load'
from /home/runner/work/shashikantilager.github.io/shashikantilager.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `<top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:58:in `load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:58:in `kernel_load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli/exec.rb:23:in `run'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:492:in `exec'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:34:in `dispatch'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/cli.rb:28:in `start'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/gems/3.2.0/gems/bundler-2.4.10/libexec/bundle:45:in `block in <top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/3.2.0/bundler/friendly_errors.rb:117:in `with_friendly_errors'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/lib/ruby/gems/3.2.0/gems/bundler-2.4.10/libexec/bundle:33:in `<top (required)>'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/bin/bundle:25:in `load'
from /opt/hostedtoolcache/Ruby/3.2.2/x64/bin/bundle:25:in `<main>'
Error: Process completed with exit code 1.
Since your template version is way behind the v0.12.0, I'd recommend you try to start fresh and migrate your changes on top of it, one by one, I think it will be easier than trying to merge it altogether. Doing small commit changes will make it easier to pinpoint where does it starts to happen, since your repo seems to be working fine locally.
This issue is caused by a update of the ubuntu version used in github actions. You can solve it by
jobs:
deploy:
# available images: https://github.com/actions/runner-images#available-images
runs-on: ubuntu-22.04
The best case scenario @LucidaLu is to try to solve it and migrate to the newest ubuntu LTS image. Keep using an older version is never recommended.
I am having the same issue and I have no idea how to solve this. @LucidaLu I am new to github and I am not quite sure how to implement this. Could you please guide me? Where does this fit in the steps given to get started?
I am having the same issue and I have no idea how to solve this. @LucidaLu I am new to github and I am not quite sure how to implement this. Could you please guide me? Where does this fit in the steps given to get started?
In your git directory open .github/workflows/deploy.yml
and find the attribute named runs-on under jobs/deploy and change the ubuntu version.
I had the same issue when creating a repo from the template and following the setup instructions exactly. The following worked as a temporary fix.
This issue is caused by a update of the ubuntu version used in github actions. You can solve it by
jobs: deploy: # available images: https://github.com/actions/runner-images#available-images runs-on: ubuntu-22.04
The issue is actively being discussed here: https://github.com/actions/runner-images/issues/10636
I will try to find some time in the weekend to take a look at this.
I believe this is solved now. At least the main branch build is working correctly.
Have you checked that your issue isn't already filed?
Bug description
Hello, I recently updated my repo with v0.12.0 and manually merged all my files. The local deployment perfectly works well. However, when I push my code to gihub, the deployment fails.
How to reproduce the bug
Commit and push changes to GitHub
Error messages and logs
Here is the logs from deploy workflow from Actions