Skip to content

Commit afa8214

Browse files
authored
Merge pull request #12 from 1K5-TECH/chore/sync-upstream-repo
chore: sync upstream repo
2 parents d068579 + 2919858 commit afa8214

File tree

1,127 files changed

+135141
-39836
lines changed

Some content is hidden

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

1,127 files changed

+135141
-39836
lines changed

.circleci/config.yml

Lines changed: 32 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ on_main_or_tag_filter: &on_main_or_tag_filter
77
branches:
88
only: main
99
tags:
10-
only: /^v.+/
10+
only: /^v\d+\.\d+\.\d+/
1111

1212
on_tag_filter: &on_tag_filter
1313
filters:
1414
branches:
1515
ignore: /.*/
1616
tags:
17-
only: /^v.+/
17+
only: /^v\d+\.\d+\.\d+/
1818

1919
orbs:
20-
path-filtering: circleci/path-filtering@1.1.0
20+
path-filtering: circleci/path-filtering@1.2.0
2121

2222
jobs:
2323
publish:
@@ -39,7 +39,7 @@ jobs:
3939
command: unset TWINE_USERNAME TWINE_PASSWORD && make publish-tests
4040
gh-release:
4141
docker:
42-
- image: cimg/node:16.14
42+
- image: cimg/node:20.19.0
4343
resource_class: small
4444
steps:
4545
- run:
@@ -54,40 +54,41 @@ jobs:
5454
5555
ui-build:
5656
docker:
57-
- image: cimg/node:19.8
57+
- image: cimg/node:20.19.0
5858
resource_class: medium
5959
steps:
6060
- checkout
6161
- run:
62-
name: Install packages
63-
command: npm --prefix web/client ci
62+
name: Install Dependencies
63+
command: |
64+
pnpm install
6465
- run:
6566
name: Build UI
66-
command: npm --prefix web/client run build
67+
command: pnpm --prefix web/client run build
6768
- persist_to_workspace:
6869
root: web/client
6970
paths:
7071
- dist
7172
trigger_private_renovate:
72-
docker:
73-
- image: cimg/base:2021.11
74-
resource_class: small
75-
steps:
76-
- run:
77-
name: Trigger private renovate
78-
command: |
79-
curl --request POST \
80-
--url $TOBIKO_PRIVATE_CIRCLECI_URL \
81-
--header "Circle-Token: $TOBIKO_PRIVATE_CIRCLECI_KEY" \
82-
--header "content-type: application/json" \
83-
--data '{
84-
"branch":"main",
85-
"parameters":{
86-
"run_main_pr":false,
87-
"run_sqlmesh_commit":false,
88-
"run_renovate":true
89-
}
90-
}'
73+
docker:
74+
- image: cimg/base:2021.11
75+
resource_class: small
76+
steps:
77+
- run:
78+
name: Trigger private renovate
79+
command: |
80+
curl --request POST \
81+
--url $TOBIKO_PRIVATE_CIRCLECI_URL \
82+
--header "Circle-Token: $TOBIKO_PRIVATE_CIRCLECI_KEY" \
83+
--header "content-type: application/json" \
84+
--data '{
85+
"branch":"main",
86+
"parameters":{
87+
"run_main_pr":false,
88+
"run_sqlmesh_commit":false,
89+
"run_renovate":true
90+
}
91+
}'
9192
9293
workflows:
9394
setup-workflow:
@@ -96,9 +97,10 @@ workflows:
9697
mapping: |
9798
web/client/.* client true
9899
(sqlmesh|tests|examples|web/server)/.* python true
99-
pytest.ini|setup.cfg|setup.py python true
100+
pytest.ini|setup.cfg|setup.py|pyproject.toml python true
100101
\.circleci/.*|Makefile|\.pre-commit-config\.yaml common true
101-
102+
vscode/extensions/.* vscode true
103+
tag: "3.9"
102104
- gh-release:
103105
<<: *on_tag_filter
104106
- ui-build:
@@ -110,4 +112,4 @@ workflows:
110112
- trigger_private_renovate:
111113
<<: *on_tag_filter
112114
requires:
113-
- publish
115+
- publish

0 commit comments

Comments
 (0)