mirror of
https://github.com/AuxXxilium/arc-modules.git
synced 2024-11-23 14:51:01 +07:00
build: update
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
f55bad72f8
commit
0cee92eecf
38
.github/workflows/build.yml
vendored
38
.github/workflows/build.yml
vendored
@ -127,6 +127,24 @@ jobs:
|
|||||||
git config --global user.name "AuxXxilium"
|
git config --global user.name "AuxXxilium"
|
||||||
sudo timedatectl set-timezone "Europe/Berlin"
|
sudo timedatectl set-timezone "Europe/Berlin"
|
||||||
|
|
||||||
|
- name: Calculate Version
|
||||||
|
run: |
|
||||||
|
# Calculate Version
|
||||||
|
VERSION=""
|
||||||
|
if [ -n "${{ inputs.version }}" ]; then
|
||||||
|
VERSION="${{ inputs.version }}"
|
||||||
|
else
|
||||||
|
VERSION="`date +'%y.%m.%d'`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${VERSION}" ]; then
|
||||||
|
# Modify Source File
|
||||||
|
echo "Version: ${VERSION}"
|
||||||
|
echo "${VERSION}" >VERSION
|
||||||
|
echo "${VERSION}" >"./output/VERSION"
|
||||||
|
echo "VERSION=${VERSION}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Tar to Artifacts
|
- name: Tar to Artifacts
|
||||||
run: |
|
run: |
|
||||||
if [ ! -d "${{ github.workspace }}/source/output" ]; then
|
if [ ! -d "${{ github.workspace }}/source/output" ]; then
|
||||||
@ -144,8 +162,10 @@ jobs:
|
|||||||
[ -d "${MODULES_PATH}" ] && cp -Rvf "${MODULES_PATH}/." "${{ github.workspace }}/source/output"
|
[ -d "${MODULES_PATH}" ] && cp -Rvf "${MODULES_PATH}/." "${{ github.workspace }}/source/output"
|
||||||
|
|
||||||
if [ "${{ matrix.platform }}" = "epyc7002" ]; then
|
if [ "${{ matrix.platform }}" = "epyc7002" ]; then
|
||||||
|
echo "${VERSION}" >"${{ github.workspace }}/source/output/VERSION"
|
||||||
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.version }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.version }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
||||||
else
|
else
|
||||||
|
echo "${VERSION}" >"${{ github.workspace }}/source/output/VERSION"
|
||||||
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -232,24 +252,6 @@ jobs:
|
|||||||
pattern: modules-*
|
pattern: modules-*
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Calculate Version
|
|
||||||
run: |
|
|
||||||
# Calculate Version
|
|
||||||
VERSION=""
|
|
||||||
if [ -n "${{ inputs.version }}" ]; then
|
|
||||||
VERSION="${{ inputs.version }}"
|
|
||||||
else
|
|
||||||
VERSION="`date +'%y.%m.%d'`"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${VERSION}" ]; then
|
|
||||||
# Modify Source File
|
|
||||||
echo "Version: ${VERSION}"
|
|
||||||
echo "${VERSION}" >VERSION
|
|
||||||
echo "${VERSION}" >"./output/VERSION"
|
|
||||||
echo "VERSION=${VERSION}" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Zip Modules
|
- name: Zip Modules
|
||||||
if: success() && env.VERSION != ''
|
if: success() && env.VERSION != ''
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user