Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shucheng committed Nov 11, 2024
1 parent 2f44e98 commit 73d1b2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .beagle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,35 @@ steps:
- name: golang
image: registry.cn-qingdao.aliyuncs.com/wod/golang:1.22-alpine
environment:
VERSION: 2.0.0-beagle-rc.6
VERSION: 2.0.0-beagle
commands:
- bash ./.beagle/build-cross.sh

- name: golang-loong64
image: registry.cn-qingdao.aliyuncs.com/wod/golang:1.22-loongnix
environment:
VERSION: 2.0.0-beagle-rc.6
VERSION: 2.0.0-beagle
commands:
- bash ./.beagle/build-loong64.sh

- name: nerdctl-amd64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-rc.2-amd64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-amd64
environment:
TARGET_ARCH: amd64
commands:
- mkdir -p _output/linux/$TARGET_ARCH
- cp /usr/local/bin/nerdctl _output/linux/$TARGET_ARCH/nerdctl

- name: nerdctl-arm64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-rc.2-arm64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-arm64
environment:
TARGET_ARCH: arm64
commands:
- mkdir -p _output/linux/$TARGET_ARCH
- cp /usr/local/bin/nerdctl _output/linux/$TARGET_ARCH/nerdctl

- name: nerdctl-loong64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-rc.2-loong64
image: registry.cn-qingdao.aliyuncs.com/wod/nerdctl:v2.0.0-loong64
environment:
TARGET_ARCH: loong64
commands:
Expand All @@ -83,7 +83,7 @@ steps:
base: registry.cn-qingdao.aliyuncs.com/wod/alpine:3-amd64
cwd: _output
repo: wod/containerd
version: v2.0.0-rc.6
version: v2.0.0
channel: amd64
args: "TARGETOS=linux,TARGETARCH=amd64"
registry: registry.cn-qingdao.aliyuncs.com
Expand All @@ -102,7 +102,7 @@ steps:
base: registry.cn-qingdao.aliyuncs.com/wod/alpine:3-arm64
cwd: _output
repo: wod/containerd
version: v2.0.0-rc.6
version: v2.0.0
channel: arm64
args: "TARGETOS=linux,TARGETARCH=arm64"
registry: registry.cn-qingdao.aliyuncs.com
Expand All @@ -121,7 +121,7 @@ steps:
base: registry.cn-qingdao.aliyuncs.com/wod/alpine:3-amd64
cwd: _output
repo: wod/containerd
version: v2.0.0-rc.6
version: v2.0.0
channel: loong64
args: "TARGETOS=linux,TARGETARCH=loong64"
registry: registry.cn-qingdao.aliyuncs.com
Expand Down
8 changes: 4 additions & 4 deletions .beagle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ git remote add upstream [email protected]:containerd/containerd.git

git fetch upstream

git merge v2.0.0-rc.6
git merge v2.0.0
```

## build
Expand All @@ -17,23 +17,23 @@ git merge v2.0.0-rc.6
docker run -it --rm \
-v $PWD/:/go/src/github.com/containerd/containerd/v2 \
-w /go/src/github.com/containerd/containerd/v2 \
-e VERSION=2.0.0-beagle-rc.6 \
-e VERSION=2.0.0-beagle \
registry.cn-qingdao.aliyuncs.com/wod/golang:1.22-alpine \
bash .beagle/build-cross.sh

# golang build
docker run -it --rm \
-v $PWD/:/go/src/github.com/containerd/containerd/v2 \
-w /go/src/github.com/containerd/containerd/v2 \
-e VERSION=2.0.0-beagle-rc.6 \
-e VERSION=2.0.0-beagle \
registry.cn-qingdao.aliyuncs.com/wod/golang:1.22 \
bash .beagle/build.sh

# golang build loong64
docker run -it --rm \
-v $PWD/:/go/src/github.com/containerd/containerd/v2 \
-w /go/src/github.com/containerd/containerd/v2 \
-e VERSION=2.0.0-beagle-rc.6 \
-e VERSION=2.0.0-beagle \
registry.cn-qingdao.aliyuncs.com/wod/golang:1.22-loongnix \
bash .beagle/build-loong64.sh
```
Expand Down

0 comments on commit 73d1b2e

Please sign in to comment.