Skip to content

Commit

Permalink
Jekyll - EOL ruby 2.7 ; use ruby 3.2 instead (devcontainers#516)
Browse files Browse the repository at this point in the history
* Jekyll - EOL ruby 2.7 ; use ruby 3.2 instead

* Update test.sh
  • Loading branch information
samruddhikhandale authored Apr 4, 2023
1 parent 23301e4 commit 44af391
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
if: "github.ref == 'refs/heads/main'"
strategy:
matrix:
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53]
page-total: [53]
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51]
page-total: [51]
fail-fast: false
runs-on: devcontainer-image-builder-ubuntu
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
if: ${{ github.event.base_ref == 'refs/heads/main' }}
strategy:
matrix:
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53]
page-total: [53]
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51]
page-total: [51]
fail-fast: false
runs-on: devcontainer-image-builder-ubuntu
steps:
Expand Down
4 changes: 2 additions & 2 deletions src/jekyll/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [Choice] Debian OS version (use 2.7-bullseye on local arm64/Apple Silicon): 2.7-bullseye, 2.7-buster
ARG VARIANT=2.7-bullseye
# [Choice] Debian OS version (use 3.2-bullseye on local arm64/Apple Silicon): 3.2-bullseye, 3.2-buster
ARG VARIANT=3.2-bullseye
FROM mcr.microsoft.com/devcontainers/ruby:${VARIANT}

USER root
Expand Down
14 changes: 7 additions & 7 deletions src/jekyll/manifest.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"version": "0.1.22",
"variants": [
"2.7-bullseye",
"2.7-buster"
"3.2-bullseye",
"3.2-buster"
],
"build": {
"latest": "2.7-bullseye",
"latest": "3.2-bullseye",
"parent": "ruby",
"rootDistro": "debian",
"architectures": {
"2.7-bullseye": [
"3.2-bullseye": [
"linux/amd64",
"linux/arm64"
],
"2.7-buster": [
"3.2-buster": [
"linux/amd64"
]
},
"tags": [
"jekyll:${VERSION}-${VARIANT}"
],
"variantTags": {
"2.7-bullseye": [
"3.2-bullseye": [
"jekyll:${VERSION}",
"jekyll:${VERSION}-bullseye"
],
"2.7-buster": [
"3.2-buster": [
"jekyll:${VERSION}-buster"
]
}
Expand Down

0 comments on commit 44af391

Please sign in to comment.