Compare commits

...

4 Commits

Author SHA1 Message Date
xiaoqidun abf332ab4b feat(更新版本): 升级Go到1.26.1
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, ccr.ccs.tencentyun.com) (push) Successful in 30m30s
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, hkccr.ccs.tencentyun.com) (push) Successful in 32m30s
2026-03-07 15:59:31 +08:00
xiaoqidun a15ea73122 feat(下载进度): 不再静默下载
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, hkccr.ccs.tencentyun.com) (push) Successful in 26m28s
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, ccr.ccs.tencentyun.com) (push) Successful in 26m45s
2026-03-05 19:18:04 +08:00
xiaoqidun 064a5a4369 style(微调注释): 微调注释
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, ccr.ccs.tencentyun.com) (push) Has been cancelled
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, hkccr.ccs.tencentyun.com) (push) Has been cancelled
2026-03-05 18:37:32 +08:00
xiaoqidun d708c93086 style(微调注释): 微调注释 2026-03-05 18:36:23 +08:00
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -17,9 +17,9 @@ jobs:
- name: download
run: |
apt-get update && apt-get install -y wget unzip && rm -rf /var/lib/apt/lists/*
wget -q -T 180 -4 https://github.com/thongtech/go-legacy-win7/releases/download/v1.26.0-2/go-legacy-win7-1.26.0-2.linux_amd64.tar.gz
wget -q -T 180 -4 https://dl.google.com/android/repository/android-ndk-r29-linux.zip
tar -zxf go-legacy-win7-1.26.0-2.linux_amd64.tar.gz && rm -f go-legacy-win7-1.26.0-2.linux_amd64.tar.gz
wget -T 180 -4 https://github.com/thongtech/go-legacy-win7/releases/download/v1.26.1-1/go-legacy-win7-1.26.1-1.linux_amd64.tar.gz
wget -T 180 -4 https://dl.google.com/android/repository/android-ndk-r29-linux.zip
tar -zxf go-legacy-win7-1.26.1-1.linux_amd64.tar.gz && rm -f go-legacy-win7-1.26.1-1.linux_amd64.tar.gz
unzip -q android-ndk-r29-linux.zip && rm -f android-ndk-r29-linux.zip
- name: docker setup
uses: docker/setup-buildx-action@v3
+4 -4
View File
@@ -4,20 +4,20 @@ FROM debian:trixie-slim
# 作者信息
LABEL authors="xiaoqidun"
# 使用中国软件
# 中科大
RUN sed -i "s|deb.debian.org|mirrors.ustc.edu.cn|g" /etc/apt/sources.list.d/debian.sources
# 安装编译工具
# 编译工具
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
autoconf libtool pkgconf git \
&& rm -rf /var/lib/apt/lists/*
# 安装go-legacy-win7
# 安装 Go
COPY go-legacy-win7 /usr/local/go-legacy-win7
# 安装android ndk
# 安装 NDK
COPY android-ndk-r29 /usr/local/android-ndk-r29
# 环境变量
+3 -3
View File
@@ -4,17 +4,17 @@ FROM debian:trixie-slim
# 作者信息
LABEL authors="xiaoqidun"
# 安装编译工具
# 编译工具
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
autoconf libtool pkgconf git \
&& rm -rf /var/lib/apt/lists/*
# 安装go-legacy-win7
# 安装 Go
COPY go-legacy-win7 /usr/local/go-legacy-win7
# 安装android ndk
# 安装 NDK
COPY android-ndk-r29 /usr/local/android-ndk-r29
# 环境变量