Skip to content

Commit e317cd5

Browse files
authored
Merge branch 'main' into fix-issue-image-render-in-html
2 parents 8c497ee + 2c24c44 commit e317cd5

76 files changed

Lines changed: 5917 additions & 3352 deletions

Some content is hidden

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

.env.development

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ TRACEROOT_GITHUB_REPO_NAME=eigent-ai
1717

1818
TRACEROOT_GITHUB_COMMIT_HASH=main
1919

20-
TRACEROOT_ENABLE_SPAN_CLOUD_EXPORT=true
20+
TRACEROOT_ENABLE_SPAN_CLOUD_EXPORT=false
2121

22-
TRACEROOT_ENABLE_LOG_CLOUD_EXPORT=true
22+
TRACEROOT_ENABLE_LOG_CLOUD_EXPORT=false
2323

2424
TRACEROOT_ENABLE_SPAN_CONSOLE_EXPORT=false
2525

26-
TRACEROOT_ENABLE_LOG_CONSOLE_EXPORT=true
26+
TRACEROOT_ENABLE_LOG_CONSOLE_EXPORT=false
2727

2828
TRACEROOT_TRACER_VERBOSE=false
2929

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
id: version
1313
attributes:
1414
label: What version of eigent are you using?
15-
placeholder: E.g., 0.0.79
15+
placeholder: E.g., 0.0.80
1616
validations:
1717
required: true
1818

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "monthly"
12+
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
# Check for updates to GitHub Actions every week
17+
interval: "weekly"

.github/workflows/build-view.yml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ permissions:
99
jobs:
1010
build:
1111
runs-on: ${{ matrix.os }}
12+
timeout-minutes: 120
1213

1314
strategy:
1415
matrix:
@@ -25,26 +26,30 @@ jobs:
2526
uses: actions/checkout@v4
2627

2728
- name: Setup Node.js
28-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
2930
with:
3031
node-version: 20
3132

3233
- name: Setup Python
33-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v6
3435
with:
35-
python-version: "3.11"
36+
python-version: '3.11'
3637

3738
- name: Install Python Dependencies
3839
run: |
3940
python -m pip install --upgrade pip
4041
pip install uv
4142
43+
- name: Install bun
44+
run: npm install -g bun
45+
4246
- name: Install Dependencies
4347
run: npm install
4448

4549
# Step for macOS builds with signing
4650
- name: Build Release Files (macOS with signing)
4751
if: runner.os == 'macOS'
52+
timeout-minutes: 90
4853
run: npm run build -- --arch ${{ matrix.arch }}
4954
env:
5055
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -57,10 +62,12 @@ jobs:
5762
VITE_STACK_PROJECT_ID: ${{ secrets.VITE_STACK_PROJECT_ID }}
5863
VITE_STACK_PUBLISHABLE_CLIENT_KEY: ${{ secrets.VITE_STACK_PUBLISHABLE_CLIENT_KEY }}
5964
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
65+
USE_NPM_INSTALL_BUN: 'true'
6066

6167
# Step for Windows builds without signing
6268
- name: Build Release Files (Windows without signing)
6369
if: runner.os == 'Windows'
70+
timeout-minutes: 90
6471
run: npm run build -- --arch ${{ matrix.arch }}
6572
env:
6673
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -69,10 +76,11 @@ jobs:
6976
VITE_STACK_PROJECT_ID: ${{ secrets.VITE_STACK_PROJECT_ID }}
7077
VITE_STACK_PUBLISHABLE_CLIENT_KEY: ${{ secrets.VITE_STACK_PUBLISHABLE_CLIENT_KEY }}
7178
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
79+
USE_NPM_INSTALL_BUN: 'true'
7280

7381
- name: Upload Artifact (macOS - dmg only)
7482
if: runner.os == 'macOS'
75-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v6
7684
with:
7785
name: release-${{ matrix.os }}-${{ matrix.arch }}
7886
path: |
@@ -81,7 +89,7 @@ jobs:
8189

8290
- name: Upload Artifact (Windows - exe only)
8391
if: runner.os == 'Windows'
84-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v6
8593
with:
8694
name: release-${{ matrix.os }}-${{ matrix.arch }}
8795
path: |
@@ -95,21 +103,21 @@ jobs:
95103
run: |
96104
mkdir -p release/mac-x64 release/mac-arm64 release/win-x64
97105
98-
# Download all artifacts with correct names
106+
# Download all artifacts with correct names
99107
- name: Download mac-x64 artifact
100-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@v7
101109
with:
102110
name: release-macos-15-intel-x64
103111
path: temp-mac-x64
104112

105113
- name: Download mac-arm64 artifact
106-
uses: actions/download-artifact@v4
114+
uses: actions/download-artifact@v7
107115
with:
108116
name: release-macos-latest-arm64
109117
path: temp-mac-arm64
110118

111119
- name: Download win-x64 artifact
112-
uses: actions/download-artifact@v4
120+
uses: actions/download-artifact@v7
113121
with:
114122
name: release-windows-latest-x64
115123
path: temp-win-x64
@@ -138,4 +146,3 @@ jobs:
138146
else
139147
find temp-win-x64 -name "*.exe" -exec mv {} release/win-x64/ \; || true
140148
fi
141-

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Setup Node.js
40-
uses: actions/setup-node@v4
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: 20
4343

4444
- name: Setup Python
45-
uses: actions/setup-python@v4
45+
uses: actions/setup-python@v6
4646
with:
4747
python-version: "3.11"
4848

@@ -83,7 +83,7 @@ jobs:
8383
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
8484

8585
- name: Upload Artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v6
8787
with:
8888
name: release-${{ matrix.os }}-${{ matrix.arch }}
8989
path: |
@@ -101,19 +101,19 @@ jobs:
101101
102102
# Download all artifacts with correct names
103103
- name: Download mac-x64 artifact
104-
uses: actions/download-artifact@v4
104+
uses: actions/download-artifact@v7
105105
with:
106106
name: release-macos-15-intel-x64
107107
path: temp-mac-x64
108108

109109
- name: Download mac-arm64 artifact
110-
uses: actions/download-artifact@v4
110+
uses: actions/download-artifact@v7
111111
with:
112112
name: release-macos-latest-arm64
113113
path: temp-mac-arm64
114114

115115
- name: Download win-x64 artifact
116-
uses: actions/download-artifact@v4
116+
uses: actions/download-artifact@v7
117117
with:
118118
name: release-windows-latest-x64
119119
path: temp-win-x64

.github/workflows/lint-markdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626

2727
- name: Get changed markdown files
2828
id: changed-files
29-
uses: tj-actions/changed-files@v45
29+
uses: tj-actions/changed-files@v47
3030
with:
3131
files: |
3232
**.md
3333
3434
- name: Lint markdown
3535
if: steps.changed-files.outputs.any_changed == 'true'
36-
run: npx markdownlint-cli@0.43.0 $CHANGED_FILES --ignore node_modules
36+
run: npx markdownlint-cli@0.43.0 $CHANGED_FILES
3737
env:
3838
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}

.markdownlintignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules
2+
CONTRIBUTING.md
3+
README.md
4+
README_CN.md
5+
README_JA.md
6+
README_PT-BR.md
7+
server/README_CN.md
8+
server/README_EN.md
9+
docs/troubleshooting/bug.md

0 commit comments

Comments
 (0)