Feat: print build package

pull/103/head
zijiren233 1 year ago
parent cb10cd0b0b
commit 21085bf247

@ -53,4 +53,4 @@ jobs:
- name: Build
run: |
bash script/build.sh -sp "${{ matrix.target }}"
bash script/build.sh -sp "${{ matrix.target }}" -m '-v -x'

@ -51,7 +51,7 @@ jobs:
- name: Build
run: |
bash script/build.sh -v "v${{ steps.get_version.outputs.VERSION }}" -p "${{ matrix.target }}"
bash script/build.sh -v "v${{ steps.get_version.outputs.VERSION }}" -p "${{ matrix.target }}" -m '-v -x'
- name: Release
uses: softprops/action-gh-release@v1

@ -45,7 +45,7 @@ jobs:
- name: Build
run: |
bash script/build.sh -v dev -p "${{ matrix.target }}"
bash script/build.sh -v dev -p "${{ matrix.target }}" -m '-v -x'
- name: Release
uses: softprops/action-gh-release@v1

@ -13,7 +13,8 @@ COPY ./ ./
RUN apk add --no-cache bash curl git go g++
RUN bash script/build.sh -Mv ${VERSION} \
-f "gcc -static" -F "g++ -static"
-f "gcc -static" -F "g++ -static" \
-m '-v -x'
From alpine:latest

@ -79,6 +79,7 @@ function InitOS() {
}
# Ref: https://dl.xanmod.org/check_x86-64_psabi.sh
# https://go.dev/wiki/MinimumRequirements#amd64
AMD64_MICRO_DETECTION_SCRIPT=$(
cat <<EOF
BEGIN {

Loading…
Cancel
Save