This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # https://dpc.pw/posts/bubblewrap-your-dev-env-and-agents/ | |
| set -euo pipefail | |
| # Skip re-isolating if already inside an isolated environment | |
| if [[ -n "${ISOLATE_ENV:-}" ]]; then | |
| >&2 echo "warning: already isolated" | |
| exec "$@" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mDMEabgPkhYJKwYBBAHaRw8BAQdAy03QmednIhXWEtks4F/hMo4GqCa8Gl00lsmm | |
| oM2Wd5G0Lk1pcm9zbGF2IFRvbWFuIDxtaXJvc2xhdi50b21hbkBhbG1hY2FyZWVy | |
| LmNvbT6IrwQTFgoAVxYhBG2qFOFqF5B52iQ5ftF7kTDbyo7bBQJpuA+SGxSAAAAA | |
| AAQADm1hbnUyLDIuNSsxLjEyLDAsMwIbAwULCQgHAgIiAgYVCgkICwIEFgIDAQIe | |
| BwIXgAAKCRDRe5Ew28qO27YxAP4gakM7x/NaSFZCBQTgOUogjn2uU2lY9oSxG+of | |
| PlsbzwEA9Q6mvKxIagGEUrIf9ixCmDSv0dy2vVC+/94sKxvGWQu0GG1pcm8gPG1p | |
| cm9AaGFyYXZhcmEub3JnPoivBBMWCgBXFiEEbaoU4WoXkHnaJDl+0XuRMNvKjtsF | |
| AmnUtNMbFIAAAAAABAAObWFudTIsMi41KzEuMTIsMCwzAhsDBQsJCAcCAiICBhUK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: Build podman from source | |
| hosts: all | |
| become: true | |
| vars: | |
| src_dir: /usr/local/src | |
| go_path: /usr/local/go | |
| runc_version: v1.2.0 | |
| go_version: 1.25.6 |