| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794 |
- name: CI
- on:
- workflow_dispatch: # allows manual triggering
- inputs:
- create_release:
- description: 'Create new release'
- required: true
- type: boolean
- push:
- branches:
- - master
- paths: ['.github/workflows/**', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m']
- pull_request:
- types: [opened, synchronize, reopened]
- paths: ['**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m']
- env:
- BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
- GGML_NLOOP: 3
- GGML_N_THREADS: 1
- jobs:
- ubuntu-focal-make:
- runs-on: ubuntu-20.04
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- run: |
- sudo apt-get update
- sudo apt-get install build-essential gcc-8
- - name: Build
- id: make_build
- run: |
- CC=gcc-8 make -j $(nproc)
- - name: Test
- id: make_test
- run: |
- CC=gcc-8 make tests -j $(nproc)
- make test -j $(nproc)
- ubuntu-latest-cmake:
- runs-on: ubuntu-latest
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- run: |
- sudo apt-get update
- sudo apt-get install build-essential
- - name: Build
- id: cmake_build
- run: |
- mkdir build
- cd build
- cmake ..
- cmake --build . --config Release -j $(nproc)
- - name: Test
- id: cmake_test
- run: |
- cd build
- ctest --verbose --timeout 900
- ubuntu-latest-cmake-sanitizer:
- runs-on: ubuntu-latest
- continue-on-error: true
- strategy:
- matrix:
- sanitizer: [ADDRESS, THREAD, UNDEFINED]
- build_type: [Debug, Release]
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- run: |
- sudo apt-get update
- sudo apt-get install build-essential
- - name: Build
- id: cmake_build
- run: |
- mkdir build
- cd build
- cmake .. -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- cmake --build . --config ${{ matrix.build_type }} -j $(nproc)
- - name: Test
- id: cmake_test
- run: |
- cd build
- ctest --verbose --timeout 900
- ubuntu-latest-cmake-mpi:
- runs-on: ubuntu-latest
- continue-on-error: true
- strategy:
- matrix:
- mpi_library: [mpich, libopenmpi-dev]
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- run: |
- sudo apt-get update
- sudo apt-get install build-essential ${{ matrix.mpi_library }}
- - name: Build
- id: cmake_build
- run: |
- mkdir build
- cd build
- cmake -DLLAMA_MPI=ON ..
- cmake --build . --config Release -j $(nproc)
- - name: Test
- id: cmake_test
- run: |
- cd build
- ctest --verbose
- # TODO: build with LLAMA_NO_METAL because test-backend-ops fail on "Apple Paravirtual device" and I don't know
- # how to debug it.
- # ref: https://github.com/ggerganov/llama.cpp/actions/runs/7131777249/job/19420981052#step:5:1124
- macOS-latest-make:
- runs-on: macos-latest
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- continue-on-error: true
- run: |
- brew update
- - name: Build
- id: make_build
- run: |
- LLAMA_NO_METAL=1 make -j $(sysctl -n hw.logicalcpu)
- - name: Test
- id: make_test
- run: |
- LLAMA_NO_METAL=1 make tests -j $(sysctl -n hw.logicalcpu)
- LLAMA_NO_METAL=1 make test -j $(sysctl -n hw.logicalcpu)
- # TODO: build with LLAMA_METAL=OFF because test-backend-ops fail on "Apple Paravirtual device" and I don't know
- # how to debug it.
- # ref: https://github.com/ggerganov/llama.cpp/actions/runs/7132125951/job/19422043567?pr=4359#step:5:6584
- # would be great if we fix these
- macOS-latest-cmake:
- runs-on: macos-latest
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- - name: Dependencies
- id: depends
- continue-on-error: true
- run: |
- brew update
- - name: Build
- id: cmake_build
- run: |
- sysctl -a
- mkdir build
- cd build
- cmake -DLLAMA_METAL=OFF ..
- cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
- - name: Test
- id: cmake_test
- run: |
- cd build
- ctest --verbose --timeout 900
- macOS-latest-cmake-ios:
- runs-on: macos-latest
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v1
- - name: Dependencies
- id: depends
- continue-on-error: true
- run: |
- brew update
- - name: Build
- id: cmake_build
- run: |
- sysctl -a
- mkdir build
- cd build
- cmake -G Xcode .. \
- -DLLAMA_BUILD_EXAMPLES=OFF \
- -DLLAMA_BUILD_TESTS=OFF \
- -DLLAMA_BUILD_SERVER=OFF \
- -DCMAKE_SYSTEM_NAME=iOS \
- -DCMAKE_OSX_DEPLOYMENT_TARGET=14.0
- cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
- macOS-latest-cmake-tvos:
- runs-on: macos-latest
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v1
- - name: Dependencies
- id: depends
- continue-on-error: true
- run: |
- brew update
- - name: Build
- id: cmake_build
- run: |
- sysctl -a
- mkdir build
- cd build
- cmake -G Xcode .. \
- -DLLAMA_BUILD_EXAMPLES=OFF \
- -DLLAMA_BUILD_TESTS=OFF \
- -DLLAMA_BUILD_SERVER=OFF \
- -DCMAKE_SYSTEM_NAME=tvOS \
- -DCMAKE_OSX_DEPLOYMENT_TARGET=14.0
- cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
- macOS-latest-swift:
- runs-on: macos-latest
- strategy:
- matrix:
- destination: ['generic/platform=macOS', 'generic/platform=iOS', 'generic/platform=tvOS']
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v1
- - name: Dependencies
- id: depends
- continue-on-error: true
- run: |
- brew update
- - name: xcodebuild for swift package
- id: xcodebuild
- run: |
- xcodebuild -scheme llama -destination "${{ matrix.destination }}"
- - name: Build Swift Example
- id: make_build_swift_example
- run: |
- make swift
- windows-latest-cmake:
- runs-on: windows-latest
- env:
- OPENBLAS_VERSION: 0.3.23
- OPENCL_VERSION: 2023.04.17
- CLBLAST_VERSION: 1.6.0
- SDE_VERSION: 9.21.1-2023-04-24
- strategy:
- matrix:
- include:
- - build: 'noavx'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX=OFF -DLLAMA_AVX2=OFF -DLLAMA_FMA=OFF -DBUILD_SHARED_LIBS=ON'
- - build: 'avx2'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DBUILD_SHARED_LIBS=ON'
- - build: 'avx'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX2=OFF -DBUILD_SHARED_LIBS=ON'
- - build: 'avx512'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX512=ON -DBUILD_SHARED_LIBS=ON'
- - build: 'clblast'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CLBLAST=ON -DBUILD_SHARED_LIBS=ON -DCMAKE_PREFIX_PATH="$env:RUNNER_TEMP/clblast"'
- - build: 'openblas'
- defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_BLAS=ON -DBUILD_SHARED_LIBS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS="$env:RUNNER_TEMP/openblas/include" -DBLAS_LIBRARIES="$env:RUNNER_TEMP/openblas/lib/openblas.lib"'
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Download OpenCL SDK
- id: get_opencl
- if: ${{ matrix.build == 'clblast' }}
- run: |
- curl.exe -o $env:RUNNER_TEMP/opencl.zip -L "https://github.com/KhronosGroup/OpenCL-SDK/releases/download/v${env:OPENCL_VERSION}/OpenCL-SDK-v${env:OPENCL_VERSION}-Win-x64.zip"
- mkdir $env:RUNNER_TEMP/opencl
- tar.exe -xvf $env:RUNNER_TEMP/opencl.zip --strip-components=1 -C $env:RUNNER_TEMP/opencl
- - name: Download CLBlast
- id: get_clblast
- if: ${{ matrix.build == 'clblast' }}
- run: |
- curl.exe -o $env:RUNNER_TEMP/clblast.7z -L "https://github.com/CNugteren/CLBlast/releases/download/${env:CLBLAST_VERSION}/CLBlast-${env:CLBLAST_VERSION}-windows-x64.7z"
- curl.exe -o $env:RUNNER_TEMP/CLBlast.LICENSE.txt -L "https://github.com/CNugteren/CLBlast/raw/${env:CLBLAST_VERSION}/LICENSE"
- 7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/clblast.7z
- rename-item $env:RUNNER_TEMP/CLBlast-${env:CLBLAST_VERSION}-windows-x64 clblast
- foreach ($f in (gci -Recurse -Path "$env:RUNNER_TEMP/clblast" -Filter '*.cmake')) {
- $txt = Get-Content -Path $f -Raw
- $txt.Replace('C:/vcpkg/packages/opencl_x64-windows/', "$($env:RUNNER_TEMP.Replace('\','/'))/opencl/") | Set-Content -Path $f -Encoding UTF8
- }
- - name: Download OpenBLAS
- id: get_openblas
- if: ${{ matrix.build == 'openblas' }}
- run: |
- curl.exe -o $env:RUNNER_TEMP/openblas.zip -L "https://github.com/xianyi/OpenBLAS/releases/download/v${env:OPENBLAS_VERSION}/OpenBLAS-${env:OPENBLAS_VERSION}-x64.zip"
- curl.exe -o $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt -L "https://github.com/xianyi/OpenBLAS/raw/v${env:OPENBLAS_VERSION}/LICENSE"
- mkdir $env:RUNNER_TEMP/openblas
- tar.exe -xvf $env:RUNNER_TEMP/openblas.zip -C $env:RUNNER_TEMP/openblas
- $vcdir = $(vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath)
- $msvc = $(join-path $vcdir $('VC\Tools\MSVC\'+$(gc -raw $(join-path $vcdir 'VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt')).Trim()))
- $lib = $(join-path $msvc 'bin\Hostx64\x64\lib.exe')
- & $lib /machine:x64 "/def:${env:RUNNER_TEMP}/openblas/lib/libopenblas.def" "/out:${env:RUNNER_TEMP}/openblas/lib/openblas.lib" /name:openblas.dll
- - name: Build
- id: cmake_build
- run: |
- mkdir build
- cd build
- cmake .. ${{ matrix.defines }}
- cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS}
- - name: Add clblast.dll
- id: add_clblast_dll
- if: ${{ matrix.build == 'clblast' }}
- run: |
- cp $env:RUNNER_TEMP/clblast/lib/clblast.dll ./build/bin/Release
- cp $env:RUNNER_TEMP/CLBlast.LICENSE.txt ./build/bin/Release/CLBlast-${env:CLBLAST_VERSION}.txt
- - name: Add libopenblas.dll
- id: add_libopenblas_dll
- if: ${{ matrix.build == 'openblas' }}
- run: |
- cp $env:RUNNER_TEMP/openblas/bin/libopenblas.dll ./build/bin/Release/openblas.dll
- cp $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt ./build/bin/Release/OpenBLAS-${env:OPENBLAS_VERSION}.txt
- - name: Check AVX512F support
- id: check_avx512f
- if: ${{ matrix.build == 'avx512' }}
- continue-on-error: true
- run: |
- cd build
- $vcdir = $(vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath)
- $msvc = $(join-path $vcdir $('VC\Tools\MSVC\'+$(gc -raw $(join-path $vcdir 'VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt')).Trim()))
- $cl = $(join-path $msvc 'bin\Hostx64\x64\cl.exe')
- echo 'int main(void){unsigned int a[4];__cpuid(a,7);return !(a[1]&65536);}' >> avx512f.c
- & $cl /O2 /GS- /kernel avx512f.c /link /nodefaultlib /entry:main
- .\avx512f.exe && echo "AVX512F: YES" && ( echo HAS_AVX512F=1 >> $env:GITHUB_ENV ) || echo "AVX512F: NO"
- - name: Test
- id: cmake_test
- if: ${{ matrix.build != 'clblast' && (matrix.build != 'avx512' || env.HAS_AVX512F == '1') }} # not all machines have native AVX-512
- run: |
- cd build
- ctest -C Release --verbose --timeout 900
- - name: Test (Intel SDE)
- id: cmake_test_sde
- if: ${{ matrix.build == 'avx512' && env.HAS_AVX512F == '0' }} # use Intel SDE for AVX-512 emulation
- run: |
- curl.exe -o $env:RUNNER_TEMP/sde.tar.xz -L "https://downloadmirror.intel.com/777395/sde-external-${env:SDE_VERSION}-win.tar.xz"
- # for some weird reason windows tar doesn't like sde tar.xz
- 7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/sde.tar.xz
- 7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/sde.tar
- $sde = $(join-path $env:RUNNER_TEMP sde-external-${env:SDE_VERSION}-win/sde.exe)
- cd build
- & $sde -future -- ctest -C Release --verbose --timeout 900
- - 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-${{ 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-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip
- windows-latest-cmake-cublas:
- runs-on: windows-latest
- strategy:
- matrix:
- cuda: ['12.2.0', '11.7.1']
- build: ['cublas']
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - uses: Jimver/cuda-toolkit@v0.2.11
- id: cuda-toolkit
- with:
- cuda: ${{ matrix.cuda }}
- method: 'network'
- sub-packages: '["nvcc", "cudart", "cublas", "cublas_dev", "thrust", "visual_studio_integration"]'
- - name: Build
- id: cmake_build
- run: |
- mkdir build
- cd build
- cmake .. -DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CUBLAS=ON -DBUILD_SHARED_LIBS=ON
- cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS}
- - 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-${{ 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-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip
- - name: Copy and pack Cuda runtime
- run: |
- echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"
- $dst='.\build\bin\cudart\'
- robocopy "${{steps.cuda-toolkit.outputs.CUDA_PATH}}\bin" $dst cudart64_*.dll cublas64_*.dll cublasLt64_*.dll
- 7z a cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip $dst\*
- - name: Upload Cuda runtime
- if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
- uses: actions/upload-artifact@v3
- with:
- path: |
- cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip
- ios-xcode-build:
- runs-on: macos-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v3
- - name: Build Xcode project
- run: xcodebuild -project examples/llama.swiftui/llama.swiftui.xcodeproj -scheme llama.swiftui -sdk iphoneos CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= -destination 'generic/platform=iOS' build
- # freeBSD-latest:
- # runs-on: macos-12
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Build
- # uses: cross-platform-actions/action@v0.19.0
- # with:
- # operating_system: freebsd
- # version: '13.2'
- # hypervisor: 'qemu'
- # run: |
- # sudo pkg update
- # sudo pkg install -y gmake automake autoconf pkgconf llvm15 clinfo clover opencl clblast openblas
- # gmake CC=/usr/local/bin/clang15 CXX=/usr/local/bin/clang++15 -j `sysctl -n hw.ncpu`
- release:
- if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
- runs-on: ubuntu-latest
- needs:
- - ubuntu-focal-make
- - ubuntu-latest-cmake
- - macOS-latest-make
- - macOS-latest-cmake
- - windows-latest-cmake
- - windows-latest-cmake-cublas
- steps:
- - name: Clone
- id: checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - 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: Create release
- id: create_release
- uses: anzz1/action-create-release@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- tag_name: ${{ steps.tag.outputs.name }}
- - name: Upload release
- id: upload_release
- uses: actions/github-script@v3
- with:
- github-token: ${{secrets.GITHUB_TOKEN}}
- script: |
- const path = require('path');
- const fs = require('fs');
- const release_id = '${{ steps.create_release.outputs.id }}';
- for (let file of await fs.readdirSync('./artifact')) {
- if (path.extname(file) === '.zip') {
- console.log('uploadReleaseAsset', file);
- await github.repos.uploadReleaseAsset({
- owner: context.repo.owner,
- repo: context.repo.repo,
- release_id: release_id,
- name: file,
- data: await fs.readFileSync(`./artifact/${file}`)
- });
- }
- }
- # ubuntu-latest-gcc:
- # runs-on: ubuntu-latest
- #
- # strategy:
- # matrix:
- # build: [Debug, Release]
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Dependencies
- # run: |
- # sudo apt-get update
- # sudo apt-get install build-essential
- # sudo apt-get install cmake
- #
- # - name: Configure
- # run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }}
- #
- # - name: Build
- # run: |
- # make
- #
- # ubuntu-latest-clang:
- # runs-on: ubuntu-latest
- #
- # strategy:
- # matrix:
- # build: [Debug, Release]
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Dependencies
- # run: |
- # sudo apt-get update
- # sudo apt-get install build-essential
- # sudo apt-get install cmake
- #
- # - name: Configure
- # run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
- #
- # - name: Build
- # run: |
- # make
- #
- # ubuntu-latest-gcc-sanitized:
- # runs-on: ubuntu-latest
- #
- # strategy:
- # matrix:
- # sanitizer: [ADDRESS, THREAD, UNDEFINED]
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Dependencies
- # run: |
- # sudo apt-get update
- # sudo apt-get install build-essential
- # sudo apt-get install cmake
- #
- # - name: Configure
- # run: cmake . -DCMAKE_BUILD_TYPE=Debug -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON
- #
- # - name: Build
- # run: |
- # make
- #
- # windows:
- # runs-on: windows-latest
- #
- # strategy:
- # matrix:
- # build: [Release]
- # arch: [Win32, x64]
- # include:
- # - arch: Win32
- # s2arc: x86
- # - arch: x64
- # s2arc: x64
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Add msbuild to PATH
- # uses: microsoft/setup-msbuild@v1
- #
- # - name: Configure
- # run: >
- # cmake -S . -B ./build -A ${{ matrix.arch }}
- # -DCMAKE_BUILD_TYPE=${{ matrix.build }}
- #
- # - name: Build
- # run: |
- # cd ./build
- # msbuild ALL_BUILD.vcxproj -t:build -p:configuration=${{ matrix.build }} -p:platform=${{ matrix.arch }}
- #
- # - name: Upload binaries
- # uses: actions/upload-artifact@v1
- # with:
- # name: llama-bin-${{ matrix.arch }}
- # path: build/bin/${{ matrix.build }}
- #
- # windows-blas:
- # runs-on: windows-latest
- #
- # strategy:
- # matrix:
- # build: [Release]
- # arch: [Win32, x64]
- # blas: [ON]
- # include:
- # - arch: Win32
- # obzip: https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x86.zip
- # s2arc: x86
- # - arch: x64
- # obzip: https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x64.zip
- # s2arc: x64
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Add msbuild to PATH
- # uses: microsoft/setup-msbuild@v1
- #
- # - name: Fetch OpenBLAS
- # if: matrix.blas == 'ON'
- # run: |
- # C:/msys64/usr/bin/wget.exe -qO blas.zip ${{ matrix.obzip }}
- # 7z x blas.zip -oblas -y
- # copy blas/include/cblas.h .
- # copy blas/include/openblas_config.h .
- # echo "blasdir=$env:GITHUB_WORKSPACE/blas" >> $env:GITHUB_ENV
- #
- # - name: Configure
- # run: >
- # cmake -S . -B ./build -A ${{ matrix.arch }}
- # -DCMAKE_BUILD_TYPE=${{ matrix.build }}
- # -DLLAMA_SUPPORT_OPENBLAS=${{ matrix.blas }}
- # -DCMAKE_LIBRARY_PATH="$env:blasdir/lib"
- #
- # - name: Build
- # run: |
- # cd ./build
- # msbuild ALL_BUILD.vcxproj -t:build -p:configuration=${{ matrix.build }} -p:platform=${{ matrix.arch }}
- #
- # - name: Copy libopenblas.dll
- # if: matrix.blas == 'ON'
- # run: copy "$env:blasdir/bin/libopenblas.dll" build/bin/${{ matrix.build }}
- #
- # - name: Upload binaries
- # if: matrix.blas == 'ON'
- # uses: actions/upload-artifact@v1
- # with:
- # name: llama-blas-bin-${{ matrix.arch }}
- # path: build/bin/${{ matrix.build }}
- #
- # emscripten:
- # runs-on: ubuntu-latest
- #
- # strategy:
- # matrix:
- # build: [Release]
- #
- # steps:
- # - name: Clone
- # uses: actions/checkout@v3
- #
- # - name: Dependencies
- # run: |
- # wget -q https://github.com/emscripten-core/emsdk/archive/master.tar.gz
- # tar -xvf master.tar.gz
- # emsdk-master/emsdk update
- # emsdk-master/emsdk install latest
- # emsdk-master/emsdk activate latest
- #
- # - name: Configure
- # run: echo "tmp"
- #
- # - name: Build
- # run: |
- # pushd emsdk-master
- # source ./emsdk_env.sh
- # popd
- # emcmake cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }}
- # make
|