2023-02-19 01:23:06 +08:00
name : Build
2022-05-02 00:59:41 +08:00
on :
2022-11-26 20:11:43 +08:00
workflow_dispatch :
2022-05-02 00:59:41 +08:00
push :
2023-01-21 14:42:48 +08:00
paths-ignore :
2023-01-25 20:53:39 +08:00
- "docs/**"
- "README.md"
2023-04-03 20:03:18 +08:00
- ".github/ISSUE_TEMPLATE/**"
2022-05-02 00:59:41 +08:00
branches :
2022-05-02 01:14:30 +08:00
- Alpha
2023-02-19 01:23:06 +08:00
tags :
- "v*"
2023-01-15 21:51:33 +08:00
pull_request_target :
2022-05-02 00:59:41 +08:00
branches :
2022-05-02 01:14:30 +08:00
- Alpha
2023-03-06 00:49:34 +08:00
concurrency :
group : ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress : true
2023-01-25 20:53:39 +08:00
env :
2023-11-09 23:20:57 +08:00
REGISTRY : ghcr.io
2022-05-02 00:59:41 +08:00
jobs :
2023-01-16 16:44:31 +08:00
Build :
2023-01-15 21:51:33 +08:00
permissions : write-all
2023-01-15 15:04:27 +08:00
runs-on : ubuntu-latest
2023-01-15 21:51:33 +08:00
strategy :
fail-fast : false
matrix :
job :
2023-01-25 20:53:39 +08:00
- {
type : "WithoutCGO" ,
target : "linux-amd64 linux-amd64-compatible" ,
id : "1" ,
}
- {
type : "WithoutCGO" ,
target : "linux-armv5 linux-armv6 linux-armv7" ,
id : "2" ,
}
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "linux-arm64 linux-mips64 linux-mips64le" ,
id : "3" ,
}
2023-01-25 20:53:39 +08:00
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "linux-mips-softfloat linux-mips-hardfloat linux-mipsle-softfloat linux-mipsle-hardfloat" ,
id : "4" ,
}
- { type : "WithoutCGO" , target : "linux-386 linux-riscv64" , id : "5" }
2023-01-25 20:53:39 +08:00
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "freebsd-386 freebsd-amd64 freebsd-arm64" ,
id : "6" ,
}
2023-01-25 20:53:39 +08:00
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "windows-amd64-compatible windows-amd64 windows-386" ,
id : "7" ,
}
2023-01-25 20:53:39 +08:00
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "windows-arm64 windows-arm32v7" ,
id : "8" ,
}
2023-03-01 13:41:25 +08:00
- {
2023-03-01 16:55:26 +08:00
type : "WithoutCGO" ,
target : "darwin-amd64 darwin-arm64 android-arm64" ,
id : "9" ,
}
2023-10-26 11:39:54 +08:00
# only for test
- { type : "WithoutCGO-GO120" , target : "linux-amd64 linux-amd64-compatible" ,id : "1" }
# Go 1.20 is the last release that will run on any release of Windows 7, 8, Server 2008 and Server 2012. Go 1.21 will require at least Windows 10 or Server 2016.
- { type : "WithoutCGO-GO120" , target : "windows-amd64-compatible windows-amd64 windows-386" ,id : "2" }
# Go 1.20 is the last release that will run on macOS 10.13 High Sierra or 10.14 Mojave. Go 1.21 will require macOS 10.15 Catalina or later.
- { type : "WithoutCGO-GO120" , target : "darwin-amd64 darwin-arm64 android-arm64" ,id : "3" }
2023-01-16 16:44:31 +08:00
- { type : "WithCGO" , target : "windows/*" , id : "1" }
2023-01-30 17:00:02 +08:00
- { type : "WithCGO" , target : "linux/386" , id : "2" }
- { type : "WithCGO" , target : "linux/amd64" , id : "3" }
- { type : "WithCGO" , target : "linux/arm64,linux/riscv64" , id : "4" }
- { type : "WithCGO" , target : "linux/arm," , id : "5" }
- { type : "WithCGO" , target : "linux/arm-6,linux/arm-7" , id : "6" }
- { type : "WithCGO" , target : "linux/mips,linux/mipsle" , id : "7" }
- { type : "WithCGO" , target : "linux/mips64" , id : "8" }
- { type : "WithCGO" , target : "linux/mips64le" , id : "9" }
- { type : "WithCGO" , target : "darwin-10.16/*" , id : "10" }
- { type : "WithCGO" , target : "android" , id : "11" }
2023-01-15 15:04:27 +08:00
steps :
- name : Check out code into the Go module directory
uses : actions/checkout@v3
2023-01-15 21:51:33 +08:00
- name : Set variables
run : echo "VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell : bash
2023-01-15 01:46:30 +08:00
- name : Set variables
2023-01-15 15:04:27 +08:00
if : ${{github.ref_name=='Alpha'}}
2023-01-15 21:51:33 +08:00
run : echo "VERSION=alpha-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
2023-01-15 01:46:30 +08:00
shell : bash
2023-01-15 15:04:27 +08:00
- name : Set variables
if : ${{github.ref_name=='Beta'}}
2023-01-15 21:51:33 +08:00
run : echo "VERSION=beta-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell : bash
- name : Set variables
2023-02-19 01:23:06 +08:00
if : ${{github.ref_name=='Meta'}}
run : echo "VERSION=meta-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
shell : bash
- name : Set variables
if : ${{github.ref_name=='' || github.ref_type=='tag'}}
2023-01-15 21:51:33 +08:00
run : echo "VERSION=$(git describe --tags)" >> $GITHUB_ENV
2023-01-15 15:04:27 +08:00
shell : bash
2023-01-15 01:46:30 +08:00
- name : Set ENV
run : |
2023-03-01 16:55:26 +08:00
sudo timedatectl set-timezone "Asia/Shanghai"
2023-11-03 21:01:45 +08:00
echo "NAME=mihomo" >> $GITHUB_ENV
2023-01-15 01:46:30 +08:00
echo "REPO=${{ github.repository }}" >> $GITHUB_ENV
echo "ShortSHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
2023-03-01 16:55:26 +08:00
echo "BUILDTIME=$(date)" >> $GITHUB_ENV
2023-02-19 01:23:06 +08:00
echo "BRANCH=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
2023-01-15 21:51:33 +08:00
shell : bash
- name : Set ENV
run : |
echo "TAGS=with_gvisor,with_lwip" >> $GITHUB_ENV
2023-11-03 21:01:45 +08:00
echo "LDFLAGS=-X 'github.com/metacubex/mihomo/constant.Version=${VERSION}' -X 'github.com/metacubex/mihomo/constant.BuildTime=${BUILDTIME}' -w -s -buildid=" >> $GITHUB_ENV
2023-01-15 01:46:30 +08:00
shell : bash
2022-11-02 22:13:54 +08:00
- name : Setup Go
2023-10-26 11:09:19 +08:00
if : ${{ matrix.job.type!='WithoutCGO-GO120' }}
2023-05-14 13:43:25 +08:00
uses : actions/setup-go@v4
2022-05-02 00:59:41 +08:00
with :
2023-08-09 17:26:24 +08:00
go-version : "1.21"
2022-11-02 22:13:54 +08:00
check-latest : true
2023-01-15 15:04:27 +08:00
2023-10-26 11:09:19 +08:00
- name : Setup Go
if : ${{ matrix.job.type=='WithoutCGO-GO120' }}
uses : actions/setup-go@v4
with :
go-version : "1.20"
check-latest : true
2023-01-16 16:44:31 +08:00
- name : Test
2023-10-26 11:39:54 +08:00
if : ${{ matrix.job.id=='1' && matrix.job.type!='WithCGO' }}
2023-01-16 16:44:31 +08:00
run : |
go test ./...
- name : Build WithoutCGO
2023-10-26 11:09:19 +08:00
if : ${{ matrix.job.type!='WithCGO' }}
2023-01-16 16:44:31 +08:00
env :
2023-11-03 21:01:45 +08:00
NAME : mihomo
2023-01-16 16:44:31 +08:00
BINDIR : bin
run : make -j$(($(nproc) + 1)) ${{ matrix.job.target }}
2023-01-15 01:46:30 +08:00
- uses : nttld/setup-ndk@v1
2023-01-16 16:44:31 +08:00
if : ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
2023-01-15 01:46:30 +08:00
id : setup-ndk
with :
2023-11-08 22:15:29 +08:00
ndk-version : r26b
add-to-path : true
2023-01-15 01:46:30 +08:00
2023-01-15 21:51:33 +08:00
- name : Build Android
2023-01-16 16:44:31 +08:00
if : ${{ matrix.job.type=='WithCGO' && matrix.job.target=='android' }}
2022-05-02 00:59:41 +08:00
env :
2023-01-15 01:46:30 +08:00
ANDROID_NDK_HOME : ${{ steps.setup-ndk.outputs.ndk-path }}
run : |
mkdir bin
2023-01-15 21:51:33 +08:00
CC=${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang
CGO_ENABLED=1 CC=${CC} GOARCH=arm64 GOOS=android go build -tags ${TAGS} -trimpath -ldflags "${LDFLAGS}" -o bin/${NAME}-android-arm64
- name : Set up xgo
2023-01-16 16:44:31 +08:00
if : ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
2023-01-15 21:51:33 +08:00
run : |
docker pull techknowlogick/xgo:latest
go install src.techknowlogick.com/xgo@latest
- name : Build by xgo
2023-01-16 16:44:31 +08:00
if : ${{ matrix.job.type=='WithCGO' && matrix.job.target!='android' }}
2023-01-15 21:51:33 +08:00
env :
ANDROID_NDK_HOME : ${{ steps.setup-ndk.outputs.ndk-path }}
run : |
mkdir bin
2023-02-19 01:23:06 +08:00
xgo --targets="${{ matrix.job.target }}" --tags="${TAGS}" -ldflags="${LDFLAGS}" --out bin/${NAME} ./
2023-01-16 15:09:25 +08:00
2023-01-16 16:44:31 +08:00
- name : Rename
if : ${{ matrix.job.type=='WithCGO' }}
2023-01-16 15:09:25 +08:00
run : |
2023-01-15 21:51:33 +08:00
cd bin
ls -la
cp ../.github/rename-cgo.sh ./
2023-01-15 15:04:27 +08:00
bash ./rename-cgo.sh
rm ./rename-cgo.sh
2023-01-16 16:44:31 +08:00
ls -la
cd ..
2023-10-26 11:09:19 +08:00
- name : Rename
if : ${{ matrix.job.type=='WithoutCGO-GO120' }}
run : |
cd bin
ls -la
cp ../.github/rename-go120.sh ./
bash ./rename-go120.sh
rm ./rename-go120.sh
ls -la
cd ..
2023-01-16 16:44:31 +08:00
- name : Zip
if : ${{ success() }}
run : |
cd bin
ls -la
chmod +x *
2023-01-16 15:09:25 +08:00
cp ../.github/release.sh ./
bash ./release.sh
rm ./release.sh
2023-01-15 01:46:30 +08:00
ls -la
cd ..
2022-05-02 00:59:41 +08:00
2023-03-01 13:41:25 +08:00
- name : Save version
run : echo ${VERSION} > bin/version.txt
shell : bash
2023-01-15 15:04:27 +08:00
- uses : actions/upload-artifact@v3
if : ${{ success() }}
2022-05-02 00:59:41 +08:00
with :
2023-01-15 15:04:27 +08:00
name : artifact
path : bin/
2023-02-19 01:23:06 +08:00
Upload-Prerelease :
2023-01-15 21:51:33 +08:00
permissions : write-all
2023-09-18 19:36:11 +08:00
if : ${{ github.ref_type=='branch' && github.event_name != 'pull_request' }}
2023-03-01 16:55:26 +08:00
needs : [ Build]
2023-01-15 15:04:27 +08:00
runs-on : ubuntu-latest
steps :
- uses : actions/download-artifact@v3
with :
name : artifact
path : bin/
- name : Display structure of downloaded files
run : ls -R
working-directory : bin
2022-05-02 00:59:41 +08:00
2023-01-15 21:51:33 +08:00
- name : Delete current release assets
2023-05-19 21:00:00 +08:00
uses : 8Mi-Tech/delete-release-assets-action@main
2023-01-15 21:51:33 +08:00
with :
github_token : ${{ secrets.GITHUB_TOKEN }}
tag : Prerelease-${{ github.ref_name }}
deleteOnlyFromDrafts : false
2023-02-27 23:02:45 +08:00
- name : Set Env
2023-03-01 16:55:26 +08:00
run : |
2023-03-02 15:09:40 +08:00
echo "BUILDTIME=$(TZ=Asia/Shanghai date)" >> $GITHUB_ENV
2023-02-27 23:02:45 +08:00
shell : bash
2022-05-02 00:59:41 +08:00
- name : Tag Repo
2023-01-15 21:51:33 +08:00
uses : richardsimko/update-tag@v1.0.6
2022-05-02 00:59:41 +08:00
with :
2022-05-02 08:27:17 +08:00
tag_name : Prerelease-${{ github.ref_name }}
2022-05-02 00:59:41 +08:00
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2023-03-01 16:55:26 +08:00
- run : |
2023-03-02 14:39:57 +08:00
cat > release.txt << 'EOF'
Release created at ${{ env.BUILDTIME }}
2023-03-01 16:55:26 +08:00
Synchronize ${{ github.ref_name }} branch code updates, keeping only the latest version
<br>
2023-11-03 21:01:45 +08:00
[ 我应该下载哪个文件? / Which file should I download?](https://github.com/MetaCubeX/mihomo/wiki/FAQ)
2023-05-02 21:35:40 +08:00
[ 查看文档 / Docs](https://metacubex.github.io/Meta-Docs/)
2023-03-02 14:39:57 +08:00
EOF
2023-03-01 16:55:26 +08:00
2023-02-19 01:23:06 +08:00
- name : Upload Prerelease
2022-05-02 00:59:41 +08:00
uses : softprops/action-gh-release@v1
if : ${{ success() }}
with :
2022-05-02 08:27:17 +08:00
tag_name : Prerelease-${{ github.ref_name }}
2023-03-01 16:55:26 +08:00
files : |
bin/*
2022-05-02 00:59:41 +08:00
prerelease : true
2023-01-20 17:13:32 +08:00
generate_release_notes : true
2023-03-01 16:55:26 +08:00
body_path : release.txt
2023-02-19 01:23:06 +08:00
Upload-Release :
permissions : write-all
if : ${{ github.ref_type=='tag' }}
2023-03-01 16:55:26 +08:00
needs : [ Build]
2023-02-19 01:23:06 +08:00
runs-on : ubuntu-latest
steps :
- uses : actions/download-artifact@v3
with :
name : artifact
path : bin/
- name : Display structure of downloaded files
run : ls -R
working-directory : bin
- name : Upload Release
uses : softprops/action-gh-release@v1
if : ${{ success() }}
with :
tag_name : ${{ github.ref_name }}
files : bin/*
generate_release_notes : true
2023-01-25 20:53:39 +08:00
Docker :
2023-06-04 15:51:25 +08:00
if : ${{ github.event_name != 'pull_request' }}
2023-01-25 20:53:39 +08:00
permissions : write-all
2023-03-01 16:55:26 +08:00
needs : [ Build]
2023-01-25 20:53:39 +08:00
runs-on : ubuntu-latest
steps :
- name : Checkout repository
uses : actions/checkout@v3
with :
fetch-depth : 0
- uses : actions/download-artifact@v3
with :
name : artifact
path : bin/
- name : Display structure of downloaded files
run : ls -R
working-directory : bin
- name : Set up QEMU
2023-05-14 13:43:25 +08:00
uses : docker/setup-qemu-action@v2
2023-01-25 20:53:39 +08:00
- name : Setup Docker buildx
2023-05-14 13:43:25 +08:00
uses : docker/setup-buildx-action@v2
2023-01-25 20:53:39 +08:00
with :
version : latest
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name : Extract Docker metadata
id : meta
2023-05-14 13:43:25 +08:00
uses : docker/metadata-action@v4
2023-01-25 20:53:39 +08:00
with :
2023-11-09 23:20:57 +08:00
images : ${{ env.REGISTRY }}/${{ github.repository }}
2023-01-25 20:53:39 +08:00
- name : Show files
run : |
ls .
ls bin/
2023-11-09 23:20:57 +08:00
- name : login to ghcr.io
uses : docker/login-action@v3
2023-01-25 20:53:39 +08:00
with :
2023-11-09 23:20:57 +08:00
registry : ghcr.io
username : ${{ github.actor }}
password : ${{ secrets.GITHUB_TOKEN }}
2023-01-25 20:53:39 +08:00
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name : Build and push Docker image
id : build-and-push
2023-11-09 23:20:57 +08:00
uses : docker/build-push-action@v5
2023-01-25 20:53:39 +08:00
with :
context : .
file : ./Dockerfile
push : ${{ github.event_name != 'pull_request' }}
platforms : |
linux/386
linux/amd64
2023-11-09 23:20:57 +08:00
linux/arm64
2023-03-01 13:41:25 +08:00
linux/arm/v7
2023-01-25 20:53:39 +08:00
tags : ${{ steps.meta.outputs.tags }}
2023-01-30 17:00:02 +08:00
labels : ${{ steps.meta.outputs.labels }}