File tree Expand file tree Collapse file tree 4 files changed +9
-11
lines changed
Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,17 @@ jobs:
1111 sync_file :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/setup-python@v4
14+ - uses : actions/setup-python@v5
1515 with :
1616 python-version : ' 3.9'
17- - uses : actions/setup-go@v3
18- with :
19- go-version : ' 1.19'
17+ - uses : actions/setup-go@v5
2018 - name : Checkout Envd-docs
21- uses : actions/checkout@v3
19+ uses : actions/checkout@v4
2220 with :
2321 fetch-depth : 0
2422 path : envd-docs
2523 - name : Checkout Envd
26- uses : actions/checkout@v3
24+ uses : actions/checkout@v4
2725 with :
2826 repository : ' tensorchord/envd'
2927 fetch-depth : 1
3230 mkdir -p envd-docs/hack/api/
3331 cp -r envd/envd/api/* envd-docs/hack/api/
3432 - name : Checkout Envd lib
35- uses : actions/checkout@v3
33+ uses : actions/checkout@v4
3634 with :
3735 repository : ' tensorchord/envdlib'
3836 fetch-depth : 1
6361 make generate-cli-ref
6462 popd
6563 - name : Create Pull Request
66- uses : peter-evans/create-pull-request@v4
64+ uses : peter-evans/create-pull-request@v7
6765 with :
6866 path : envd-docs
6967 add-paths : |
Original file line number Diff line number Diff line change 1313
1414我们的社区会议安排在每隔一个星期三,太平洋标准时间晚上 8 点(北京时间星期四,中午 12 点)。请查看[ 日历] ( https://calendar.google.com/calendar/u/0?cid=Y2VkMjVmMzYwM2RkYmM1ZThhMDI0ODM1NWNhYjc3MGEzZjhlZjU4MTBmY2JlZGI4ODZlODI5YmZhNDc5ZWQ5M0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t ) 以了解时间,并在你的日历上标记日期!
1515
16- 如果你有什么要讨论的,请查看[ 🫂 ` envd ` 社区会议记录] ( https://docs.google.com/document/d/1rnqV56mGGX14TXTgFQhME1lE7FhDROX-1Nx8cY7sSoY/edit?usp=sharing ) 。这是一个很好的方式,它可以让你随时了解社区的任何最新情况。
16+ 如果你有什么要讨论的,请查看[ 🫂 ` envd ` 社区会议记录] ( https://docs.google.com/document/d/1rnqV56mGGX14TXTgFQhME1lE7FhDROX-1Nx8cY7sSoY/edit?usp=sharing ) 。这是一个很好的方式,它可以让你随时了解社区的任何最新情况。
1717
1818<div class =" video-container " ><iframe src =" https://docs.google.com/document/d/e/2PACX-1vS44-rc7W3E8eLqcmc58_zmy2-DAW8SvgOtGVHPaXL5rEQy3O4vSMRPLmYRkkkuL1jzSr-Sm3oPcLBD/pub?embedded=true " ></iframe ></div >
Original file line number Diff line number Diff line change 2424 - [ 实现 ` envd ` 的语言服务器] ( https://github.com/tensorchord/envd/issues/358 )
2525- ** 运行时**
2626 - 在 dockerd 22.06-beta 中支持 buildkitd moby worker: [ Support buildkitd moby worker in dockerd 22.06-beta] ( https://github.com/tensorchord/envd/issues/51 ) 。这是一项重大的改进,可以加速构建过程。我们在 docker 22.06 中使用 moby worker,并在 docker 20.10 中回退到 docker worker。
27- - 收集GPU /CPU 的指标,通过 Web UI 展示: [ Add agent to collect metrics in the container (or in the host)] ( https://github.com/tensorchord/envd/issues/218 )
27+ - 收集 GPU /CPU 的指标,通过 Web UI 展示: [ Add agent to collect metrics in the container (or in the host)] ( https://github.com/tensorchord/envd/issues/218 )
2828- ** 生态系统**
2929 - ` envd ` 的 vscode 扩展:[ Contribute the vscode-envd extension] ( https://github.com/tensorchord/vscode-envd )
3030 - 设计拓展机制加载用户自定义函数:[ Design the extension mechanism to reuse user-defined build funcs] ( https://github.com/tensorchord/envd/issues/91 ) 。用户可以运行 ` load(<custom-package>) ` 来加载自定义函数。
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ VERSION=$1
77DOWNLOAD_NAME=$( mktemp -u --suffix .envd)
88
99get_github_latest_release () {
10- curl -sSf " https://api.github.com/repos/$1 /releases/latest" | # Get latest release from GitHub api
10+ curl -sSf " https://api.github.com/repos/$1 /releases/latest" | # Get latest release from GitHub API
1111 grep ' "tag_name":' | # Get tag line
1212 sed -E ' s/.*"v?([^"]+)".*/\1/' # Pluck JSON value
1313}
You can’t perform that action at this time.
0 commit comments