-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
160 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: build dev | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
pull_request: | ||
branches: [ dev ] | ||
|
||
jobs: | ||
|
||
build: | ||
strategy: | ||
matrix: | ||
platform: [ ubuntu-latest ] | ||
go-version: [ 1.17 ] | ||
name: Build | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install gcc-mingw-w64-x86-64 | ||
sudo apt-get -y install gcc-arm-linux-gnueabihf libc6-dev-armhf-cross | ||
sudo apt-get -y install gcc-aarch64-linux-gnu libc6-dev-arm64-cross | ||
go get -v -t -d ./... | ||
if [ -f Gopkg.toml ]; then | ||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure | ||
fi | ||
- name: Build linux | ||
run: | | ||
CC=gcc CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o alidrive_uploader_linux_amd64/alidrive main.go | ||
CC=aarch64-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -o alidrive_uploader_linux_arm64/alidrive main.go | ||
CC=arm-linux-gnueabihf-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm go build -o alidrive_uploader_linux_arm/alidrive main.go | ||
- name: Build windows | ||
run: | | ||
CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -tags forceposix -o alidrive_uploader_windows_amd64/alidrive.exe main.go | ||
- name: Build linux_386 | ||
run: | | ||
sudo apt-get -y install libc6-dev-i386 | ||
CC=gcc CGO_ENABLED=1 GOOS=linux GOARCH=386 go build -o alidrive_uploader_linux_386/alidrive main.go | ||
- name: Copy additional files | ||
run: | | ||
ls | grep "alidrive_uploader_" | awk '{ print "cp example.config.yaml "$0"/example.config.yaml" | "/bin/bash" }' | ||
- name: Upload artifacts linux_amd64 | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: alidrive_uploader_linux_amd64 | ||
path: alidrive_uploader_linux_amd64 | ||
|
||
- name: Upload artifacts linux_arm64 | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: alidrive_uploader_linux_arm64 | ||
path: alidrive_uploader_linux_arm64 | ||
|
||
- name: Upload artifacts linux_arm | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: alidrive_uploader_linux_arm | ||
path: alidrive_uploader_linux_arm | ||
|
||
- name: Upload artifacts windows_amd64 | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: alidrive_uploader_windows_amd64 | ||
path: alidrive_uploader_windows_amd64 | ||
|
||
- name: Upload artifacts linux_386 | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: alidrive_uploader_linux_386 | ||
path: alidrive_uploader_linux_386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
hash tar uname grep curl head | ||
|
||
OS="$(uname)" | ||
case $OS in | ||
Linux) | ||
OS='linux' | ||
;; | ||
Darwin) | ||
OS='darwin' | ||
;; | ||
*) | ||
echo 'OS not supported' | ||
exit 2 | ||
;; | ||
esac | ||
|
||
ARCH="$(uname -m)" | ||
case $ARCH in | ||
x86_64|amd64) | ||
ARCH='amd64' | ||
;; | ||
aarch64) | ||
ARCH='arm64' | ||
;; | ||
i?86|x86) | ||
ARCH='386' | ||
;; | ||
arm*) | ||
ARCH='arm' | ||
;; | ||
*) | ||
echo 'OS type not supported' | ||
exit 2 | ||
;; | ||
esac | ||
|
||
|
||
Install() | ||
{ | ||
echo '正在下载阿里云盘上传工具...' | ||
CORE_DOWNLOAD_URL=$(curl -fsSL https://api.github.com/repos/aoaostar/alidrive-uploader/releases/latest | grep "browser_download_url.*$OS.*$ARCH" | cut -d '"' -f 4) | ||
curl -L "$CORE_DOWNLOAD_URL" | tar -xz | ||
#================================================================== | ||
echo '================================================' | ||
echo '阿里云盘上传工具下载完成' | ||
} | ||
|
||
Install |