Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
14 changes: 12 additions & 2 deletions .github/workflows/dev-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,27 @@ jobs:
--target podman \
--tag podman-5.5.2-builder \
'https://github.com/mgoltzsche/podman-static.git#9ccf992536ecf0a4a3b82ac27fc708f00ab141ab'
docker build \
--target crun \
--tag crun-builder \
'https://github.com/mgoltzsche/podman-static.git#9ccf992536ecf0a4a3b82ac27fc708f00ab141ab'
container_id=$(docker create podman-5.5.2-builder)
docker cp "${container_id}:/usr/local/bin/podman" podman
docker rm "${container_id}"
container_id=$(docker create crun-builder)
docker cp "${container_id}:/usr/local/bin/crun" crun
docker rm "${container_id}"
sudo install -m 0755 podman /usr/local/bin/podman
sudo install -m 0755 crun /usr/local/bin/crun
sudo install -m 0755 crun /usr/bin/crun
podman --version
crun --version
- name: Tools Info
run: |
docker info
docker buildx version
podman info
podman buildx version
podman info || true
podman buildx version || true
- name: Install Dependencies
run: |
yarn install --frozen-lockfile
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.defaultFormatter": "vscode.json-language-features"
}
},
"githubPullRequests.ignoredPullRequestBranches": [
"main"
]
}