|
|
@@ -291,24 +291,32 @@ jobs:
|
|
|
cd build
|
|
|
ctest -C Release --verbose --timeout 900
|
|
|
|
|
|
- - name: Get commit hash
|
|
|
- id: commit
|
|
|
- if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
- uses: pr-mpt/actions-commit-hash@v2
|
|
|
+ - name: Determine tag name
|
|
|
+ id: tag
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
+ SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
+ if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
+ echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
+ else
|
|
|
+ SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
+ echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
+ fi
|
|
|
|
|
|
- name: Pack artifacts
|
|
|
id: pack_artifacts
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
run: |
|
|
|
Copy-Item LICENSE .\build\bin\Release\llama.cpp.txt
|
|
|
- 7z a llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\*
|
|
|
+ 7z a llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\*
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
uses: actions/upload-artifact@v3
|
|
|
with:
|
|
|
path: |
|
|
|
- llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip
|
|
|
+ llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip
|
|
|
|
|
|
windows-latest-cmake-cublas:
|
|
|
runs-on: windows-latest
|
|
|
@@ -338,23 +346,31 @@ jobs:
|
|
|
cmake .. -DLLAMA_BUILD_SERVER=ON -DLLAMA_CUBLAS=ON
|
|
|
cmake --build . --config Release
|
|
|
|
|
|
- - name: Get commit hash
|
|
|
- id: commit
|
|
|
- if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
- uses: pr-mpt/actions-commit-hash@v2
|
|
|
+ - name: Determine tag name
|
|
|
+ id: tag
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
+ SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
+ if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
+ echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
+ else
|
|
|
+ SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
+ echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
+ fi
|
|
|
|
|
|
- name: Pack artifacts
|
|
|
id: pack_artifacts
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
run: |
|
|
|
- 7z a llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip .\build\bin\Release\*
|
|
|
+ 7z a llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip .\build\bin\Release\*
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
uses: actions/upload-artifact@v3
|
|
|
with:
|
|
|
path: |
|
|
|
- llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip
|
|
|
+ llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip
|
|
|
|
|
|
- name: Copy and pack Cuda runtime
|
|
|
if: ${{ matrix.cuda == '12.1.0' }}
|
|
|
@@ -400,21 +416,34 @@ jobs:
|
|
|
- windows-latest-cmake-cublas
|
|
|
|
|
|
steps:
|
|
|
+ - name: Clone
|
|
|
+ id: checkout
|
|
|
+ uses: actions/checkout@v1
|
|
|
+
|
|
|
+ - name: Determine tag name
|
|
|
+ id: tag
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
+ SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
+ if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
+ echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
+ else
|
|
|
+ SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
+ echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
+ fi
|
|
|
+
|
|
|
- name: Download artifacts
|
|
|
id: download-artifact
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
|
|
- - name: Get commit hash
|
|
|
- id: commit
|
|
|
- uses: pr-mpt/actions-commit-hash@v2
|
|
|
-
|
|
|
- name: Create release
|
|
|
id: create_release
|
|
|
uses: anzz1/action-create-release@v1
|
|
|
env:
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
with:
|
|
|
- tag_name: ${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}
|
|
|
+ tag_name: ${{ steps.tag.outputs.name }}
|
|
|
|
|
|
- name: Upload release
|
|
|
id: upload_release
|