Skip to content

Commit 02cd0c6

Browse files
committed
Restore BeeLlama local changes on cleaned history
1 parent 16ebdc5 commit 02cd0c6

126 files changed

Lines changed: 11197 additions & 1328 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: https://anbeeld.com/support

.github/workflows/build-3rd-party.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch: # allows manual triggering
55
push:
66
branches:
7+
- main
78
- master
89
paths: [
910
'.github/workflows/build-3rd-party.yml',

.github/workflows/build-and-test-snapdragon.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7+
- main
78
- master
89
paths:
910
- '.github/workflows/build-and-test-snapdragon.yml'

.github/workflows/build-android.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7+
- main
78
- master
89
paths:
910
- '.github/workflows/build-android.yml'

.github/workflows/build-apple.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch: # allows manual triggering
55
push:
66
branches:
7+
- main
78
- master
89
paths: [
910
'.github/workflows/build-apple.yml',
@@ -50,7 +51,7 @@ jobs:
5051
with:
5152
key: macOS-latest-ios
5253
evict-old-files: 1d
53-
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
54+
save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
5455

5556
- name: Build
5657
id: cmake_build
@@ -128,7 +129,7 @@ jobs:
128129
with:
129130
key: macOS-latest-tvos
130131
evict-old-files: 1d
131-
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
132+
save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
132133

133134
- name: Build
134135
id: cmake_build
@@ -190,7 +191,7 @@ jobs:
190191
with:
191192
key: macOS-latest-swift
192193
evict-old-files: 1d
193-
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
194+
save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
194195

195196
- name: Download xcframework artifact
196197
uses: actions/download-artifact@v7

.github/workflows/build-cann.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch: # allows manual triggering
55
push:
66
branches:
7+
- main
78
- master
89
paths: [
910
'.github/workflows/build-cann.yml',

.github/workflows/build-cross.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
workflow_dispatch:
66
push:
77
branches:
8+
- main
89
- master
910
paths: [
1011
'.github/workflows/build-cross.yml',

.github/workflows/build-msys.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# key: windows-msys2
4141
# variant: ccache
4242
# evict-old-files: 1d
43-
# save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
43+
# save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
4444

4545
- name: Setup ${{ matrix.sys }}
4646
uses: msys2/setup-msys2@cafece8e6baf9247cf9b1bf95097b0b983cc558d # v2

.github/workflows/build-openvino.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch: # allows manual triggering
55
push:
66
branches:
7+
- main
78
- master
89
paths: [
910
'.github/workflows/build-openvino.yml',
@@ -69,7 +70,7 @@ jobs:
6970
with:
7071
key: ubuntu-24-openvino-${{ matrix.variant }}-no-preset-v1
7172
evict-old-files: 1d
72-
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
73+
save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
7374

7475
- name: Dependencies
7576
id: depends

.github/workflows/build-riscv.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
workflow_dispatch: # allows manual triggering
55
push:
66
branches:
7+
- main
78
- master
89
paths: [
910
'.github/workflows/build-riscv.yml',
@@ -67,7 +68,7 @@ jobs:
6768
with:
6869
key: ubuntu-riscv64-native-sanitizer-${{ matrix.sanitizer }}-${{ matrix.build_type }}
6970
evict-old-files: 1d
70-
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
71+
save: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') }}
7172

7273
- name: Build
7374
id: cmake_build

0 commit comments

Comments
 (0)