Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build containerboot wrapper for Tailscale #39788

Merged
merged 2 commits into from
Jan 16, 2025
Merged
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
8 changes: 7 additions & 1 deletion tailscale.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: tailscale
version: 1.78.1
epoch: 2
epoch: 3
description: The easiest, most secure way to use WireGuard and 2FA.
copyright:
- license: BSD-3-Clause
Expand All @@ -27,10 +27,12 @@ pipeline:
deps: golang.org/x/crypto@v0.31.0 golang.org/x/net@v0.33.0

- runs: |
./build_dist.sh tailscale.com/cmd/containerboot
./build_dist.sh tailscale.com/cmd/tailscale
./build_dist.sh tailscale.com/cmd/tailscaled

- runs: |
install -Dm755 containerboot ${{targets.destdir}}/usr/bin/containerboot
install -Dm755 ${{package.name}} ${{targets.destdir}}/usr/bin/tailscale
install -Dm755 ${{package.name}}d ${{targets.destdir}}/usr/sbin/tailscaled

Expand All @@ -51,6 +53,10 @@ test:
tailscale --help
tailscaled --version
tailscaled --help
- name: Containerboot Test
runs: |
containerboot &
sleep 2
- name: Tailscale Daemon Test
runs: |
tailscaled -tun=userspace-networking -socket=tailscaled.socket &
Expand Down
Loading