Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/smoke-test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ echo "(*) Docker image details..."
docker images

# Clean up
docker rm -f $(docker container ls -f "label=${id_label}" -q)
# docker rm -f $(docker container ls -f "label=${id_label}" -q)
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