Skip to content

Commit 7c89668

Browse files
committed
Rename project to DashQL
1 parent a736ea6 commit 7c89668

File tree

813 files changed

+2334
-2334
lines changed

Some content is hidden

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

813 files changed

+2334
-2334
lines changed

.github/workflows/build.yml

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
build:
1919
- os: macos-14
2020
target: aarch64-apple-darwin
21-
artifact: sqlynx_pack_macos
21+
artifact: dashql_pack_macos
2222
- os: ubuntu-24.04
2323
target: x86_64-unknown-linux-gnu
24-
artifact: sqlynx_pack_linux
24+
artifact: dashql_pack_linux
2525
name: Pack / ${{ matrix.build.os }}
2626
runs-on: ${{ matrix.build.os }}
2727
steps:
@@ -50,15 +50,15 @@ jobs:
5050
with:
5151
os: ${{ matrix.build.os }}
5252

53-
- name: Build sqlynx-pack
53+
- name: Build dashql-pack
5454
shell: bash
5555
run: |
56-
cargo build --target=${{ matrix.build.target }} -p sqlynx-pack --release
56+
cargo build --target=${{ matrix.build.target }} -p dashql-pack --release
5757
5858
- uses: actions/upload-artifact@v4
5959
with:
6060
name: ${{ matrix.build.artifact }}
61-
path: ${{ github.workspace }}/target/${{ matrix.build.target }}/release/*sqlynx*
61+
path: ${{ github.workspace }}/target/${{ matrix.build.target }}/release/*dashql*
6262
retention-days: 1
6363

6464
core_wasm:
@@ -101,8 +101,8 @@ jobs:
101101
102102
- uses: actions/upload-artifact@v4
103103
with:
104-
name: sqlynx_core_wasm_${{ matrix.build_type }}
105-
path: ${{ github.workspace }}/packages/sqlynx-core/build/wasm/${{ matrix.build_type }}/sqlynx.wasm
104+
name: dashql_core_wasm_${{ matrix.build_type }}
105+
path: ${{ github.workspace }}/packages/dashql-core/build/wasm/${{ matrix.build_type }}/dashql.wasm
106106
retention-days: 1
107107

108108
core_native:
@@ -131,62 +131,62 @@ jobs:
131131
- name: Compile library
132132
shell: bash
133133
env:
134-
SQLYNX_SOURCE_DIR: ${{ github.workspace }}/packages/sqlynx-core
135-
SQLYNX_BUILD_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/native/${{ matrix.build_type }}
134+
DASHQL_SOURCE_DIR: ${{ github.workspace }}/packages/dashql-core
135+
DASHQL_BUILD_DIR: ${{ github.workspace }}/packages/dashql-core/build/native/${{ matrix.build_type }}
136136
run: |
137-
cmake -S ${SQLYNX_SOURCE_DIR} -B ${SQLYNX_BUILD_DIR} \
137+
cmake -S ${DASHQL_SOURCE_DIR} -B ${DASHQL_BUILD_DIR} \
138138
-DCMAKE_C_COMPILER=${{env.LLVM_PATH}}/bin/clang \
139139
-DCMAKE_CXX_COMPILER=${{env.LLVM_PATH}}/bin/clang++ \
140140
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
141141
-DCMAKE_EXPORT_COMPILE_COMMANDS=1 \
142142
-DCODE_COVERAGE=1
143-
ln -sf ${SQLYNX_BUILD_DIR}/compile_commands.json ${SQLYNX_SOURCE_DIR}/compile_commands.json
144-
cmake --build ${SQLYNX_BUILD_DIR} --parallel $(nproc --all)
143+
ln -sf ${DASHQL_BUILD_DIR}/compile_commands.json ${DASHQL_SOURCE_DIR}/compile_commands.json
144+
cmake --build ${DASHQL_BUILD_DIR} --parallel $(nproc --all)
145145
146146
- name: Test library
147147
shell: bash
148148
env:
149-
SQLYNX_SOURCE_DIR: ${{ github.workspace }}/packages/sqlynx
150-
SQLYNX_BUILD_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/native/${{ matrix.build_type }}
149+
DASHQL_SOURCE_DIR: ${{ github.workspace }}/packages/dashql
150+
DASHQL_BUILD_DIR: ${{ github.workspace }}/packages/dashql-core/build/native/${{ matrix.build_type }}
151151
run: |
152-
${SQLYNX_BUILD_DIR}/tester --source ${SQLYNX_SOURCE_DIR}
152+
${DASHQL_BUILD_DIR}/tester --source ${DASHQL_SOURCE_DIR}
153153
154154
- name: Run pipeline benchmarks
155155
if: matrix.build_type == 'o2'
156156
shell: bash
157157
env:
158-
SQLYNX_SOURCE_DIR: ${{ github.workspace }}/packages/sqlynx
159-
SQLYNX_BUILD_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/native/${{ matrix.build_type }}
158+
DASHQL_SOURCE_DIR: ${{ github.workspace }}/packages/dashql
159+
DASHQL_BUILD_DIR: ${{ github.workspace }}/packages/dashql-core/build/native/${{ matrix.build_type }}
160160
run: |
161-
${SQLYNX_BUILD_DIR}/benchmark_pipeline
161+
${DASHQL_BUILD_DIR}/benchmark_pipeline
162162
163163
- name: Merge coverage data
164164
shell: bash
165165
env:
166-
SQLYNX_COVERAGE_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/coverage
166+
DASHQL_COVERAGE_DIR: ${{ github.workspace }}/packages/dashql-core/build/coverage
167167
run: |
168-
mkdir -p ${SQLYNX_COVERAGE_DIR}
169-
${{env.LLVM_PATH}}/bin/llvm-profdata merge -output=${SQLYNX_COVERAGE_DIR}/coverage.prof -instr default.profraw
168+
mkdir -p ${DASHQL_COVERAGE_DIR}
169+
${{env.LLVM_PATH}}/bin/llvm-profdata merge -output=${DASHQL_COVERAGE_DIR}/coverage.prof -instr default.profraw
170170
171171
- name: Build coverage report
172172
shell: bash
173173
env:
174-
SQLYNX_BUILD_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/native/${{ matrix.build_type }}
175-
SQLYNX_COVERAGE_DIR: ${{ github.workspace }}/packages/sqlynx-core/build/coverage
174+
DASHQL_BUILD_DIR: ${{ github.workspace }}/packages/dashql-core/build/native/${{ matrix.build_type }}
175+
DASHQL_COVERAGE_DIR: ${{ github.workspace }}/packages/dashql-core/build/coverage
176176
run: |
177177
${{env.LLVM_PATH}}/bin/llvm-cov export \
178-
--instr-profile ${SQLYNX_COVERAGE_DIR}/coverage.prof \
178+
--instr-profile ${DASHQL_COVERAGE_DIR}/coverage.prof \
179179
--format lcov \
180180
--ignore-filename-regex='.*/build/native/${{ matrix.build_type }}/.*' \
181181
--ignore-filename-regex='.*/utf8proc/.*' \
182182
--ignore-filename-regex='.*/proto/proto_generated.h' \
183183
--ignore-filename-regex='.*/.*\.list' \
184-
${SQLYNX_BUILD_DIR}/tester > ${SQLYNX_COVERAGE_DIR}/lcov.info
184+
${DASHQL_BUILD_DIR}/tester > ${DASHQL_COVERAGE_DIR}/lcov.info
185185
186186
- uses: actions/upload-artifact@v4
187187
with:
188-
name: sqlynx_coverage_native_${{ matrix.build_type }}
189-
path: ${{ github.workspace }}/packages/sqlynx-core/build/coverage/lcov.info
188+
name: dashql_coverage_native_${{ matrix.build_type }}
189+
path: ${{ github.workspace }}/packages/dashql-core/build/coverage/lcov.info
190190
retention-days: 1
191191

192192
core:
@@ -203,8 +203,8 @@ jobs:
203203

204204
- uses: actions/download-artifact@v4
205205
with:
206-
name: sqlynx_core_wasm_o3
207-
path: ${{ github.workspace }}/packages/sqlynx-core/build/wasm/o3/
206+
name: dashql_core_wasm_o3
207+
path: ${{ github.workspace }}/packages/dashql-core/build/wasm/o3/
208208

209209
- name: Setup flatc
210210
uses: ./.github/actions/setup-flatc
@@ -218,26 +218,26 @@ jobs:
218218
run: |
219219
yarn install --frozen-lockfile
220220
221-
- name: Build @ankoh/sqlynx-core
221+
- name: Build @ankoh/dashql-core
222222
shell: bash
223223
run: |
224-
yarn workspace @ankoh/sqlynx-core build:o3
224+
yarn workspace @ankoh/dashql-core build:o3
225225
226-
- name: Test @ankoh/sqlynx-core
226+
- name: Test @ankoh/dashql-core
227227
shell: bash
228228
run: |
229-
yarn workspace @ankoh/sqlynx-core test:coverage
229+
yarn workspace @ankoh/dashql-core test:coverage
230230
231231
- uses: actions/upload-artifact@v4
232232
with:
233-
name: sqlynx_core
234-
path: ${{ github.workspace }}/packages/sqlynx-core-bindings/dist
233+
name: dashql_core
234+
path: ${{ github.workspace }}/packages/dashql-core-bindings/dist
235235
retention-days: 1
236236

237237
- uses: actions/upload-artifact@v4
238238
with:
239-
name: sqlynx_coverage_js
240-
path: ${{ github.workspace }}/packages/sqlynx-core-bindings/coverage/lcov.info
239+
name: dashql_coverage_js
240+
path: ${{ github.workspace }}/packages/dashql-core-bindings/coverage/lcov.info
241241
retention-days: 1
242242

243243
compute_native:
@@ -281,15 +281,15 @@ jobs:
281281
with:
282282
os: ubuntu-24.04
283283

284-
- name: Build sqlynx-compute
284+
- name: Build dashql-compute
285285
shell: bash
286286
run: |
287-
cargo build -p sqlynx-compute --profile=${{ matrix.build.profile }}
287+
cargo build -p dashql-compute --profile=${{ matrix.build.profile }}
288288
289-
- name: Test sqlynx-compute
289+
- name: Test dashql-compute
290290
shell: bash
291291
run: |
292-
cargo test -p sqlynx-compute --profile=${{ matrix.build.profile }}
292+
cargo test -p dashql-compute --profile=${{ matrix.build.profile }}
293293
294294
compute_wasm:
295295
name: Compute / WASM / O3
@@ -329,19 +329,19 @@ jobs:
329329
run: |
330330
yarn install --frozen-lockfile
331331
332-
- name: Build @ankoh/sqlynx-compute
332+
- name: Build @ankoh/dashql-compute
333333
shell: bash
334334
run: |
335335
./node_modules/.bin/wasm-pack build \
336336
--target web --release \
337-
--out-name sqlynx_compute \
337+
--out-name dashql_compute \
338338
--out-dir ./dist \
339-
./packages/sqlynx-compute/
339+
./packages/dashql-compute/
340340
341341
- uses: actions/upload-artifact@v4
342342
with:
343-
name: sqlynx_compute_wasm_o3
344-
path: ${{ github.workspace }}/packages/sqlynx-compute/dist
343+
name: dashql_compute_wasm_o3
344+
path: ${{ github.workspace }}/packages/dashql-compute/dist
345345
retention-days: 1
346346

347347
pwa:
@@ -354,11 +354,11 @@ jobs:
354354
- name: Relocatable
355355
target: build:reloc
356356
output: reloc
357-
artifact: sqlynx_pwa_reloc
357+
artifact: dashql_pwa_reloc
358358
- name: Pages
359359
target: build:pages
360360
output: pages
361-
artifact: sqlynx_pwa_pages
361+
artifact: dashql_pwa_pages
362362
needs:
363363
- core
364364
- pack
@@ -372,24 +372,24 @@ jobs:
372372

373373
- uses: actions/download-artifact@v4
374374
with:
375-
name: sqlynx_pack_linux
375+
name: dashql_pack_linux
376376
path: ${{ github.workspace }}/.bin/
377377

378378
- uses: actions/download-artifact@v4
379379
with:
380-
name: sqlynx_core
381-
path: ${{ github.workspace }}/packages/sqlynx-core-bindings/dist
380+
name: dashql_core
381+
path: ${{ github.workspace }}/packages/dashql-core-bindings/dist
382382

383383
- uses: actions/download-artifact@v4
384384
with:
385-
name: sqlynx_compute_wasm_o3
386-
path: ${{ github.workspace }}/packages/sqlynx-compute/dist
385+
name: dashql_compute_wasm_o3
386+
path: ${{ github.workspace }}/packages/dashql-compute/dist
387387

388-
- name: Freeze SQLynx version
388+
- name: Freeze DashQL version
389389
shell: bash
390390
run: |
391-
chmod +x ./.bin/sqlynx-pack
392-
./.bin/sqlynx-pack freeze
391+
chmod +x ./.bin/dashql-pack
392+
./.bin/dashql-pack freeze
393393
394394
- name: Install npm dependencies
395395
shell: bash
@@ -400,24 +400,24 @@ jobs:
400400
shell: bash
401401
run: |
402402
./node_modules/.bin/buf generate
403-
yarn workspace @ankoh/sqlynx-protobuf build
403+
yarn workspace @ankoh/dashql-protobuf build
404404
405405
- name: Run tests
406406
shell: bash
407407
run: |
408-
yarn workspace @ankoh/sqlynx-app test
408+
yarn workspace @ankoh/dashql-app test
409409
410410
- name: Build web app
411411
shell: bash
412412
env:
413-
SQLYNX_APP_URL: "https://sqlynx.app"
413+
DASHQL_APP_URL: "https://dashql.app"
414414
run: |
415-
yarn workspace @ankoh/sqlynx-app ${{ matrix.build.target }}
415+
yarn workspace @ankoh/dashql-app ${{ matrix.build.target }}
416416
417417
- uses: actions/upload-artifact@v4
418418
with:
419419
name: ${{ matrix.build.artifact }}
420-
path: ${{ github.workspace }}/packages/sqlynx-app/build/${{ matrix.build.output }}
420+
path: ${{ github.workspace }}/packages/dashql-app/build/${{ matrix.build.output }}
421421
retention-days: 1
422422

423423
native:
@@ -436,18 +436,18 @@ jobs:
436436

437437
- uses: actions/download-artifact@v4
438438
with:
439-
name: sqlynx_pack_macos
439+
name: dashql_pack_macos
440440
path: ${{ github.workspace }}/.bin/
441441

442442
- uses: actions/download-artifact@v4
443443
with:
444-
name: sqlynx_core
445-
path: ${{ github.workspace }}/packages/sqlynx-core-bindings/dist
444+
name: dashql_core
445+
path: ${{ github.workspace }}/packages/dashql-core-bindings/dist
446446

447447
- uses: actions/download-artifact@v4
448448
with:
449-
name: sqlynx_pwa_reloc
450-
path: ${{ github.workspace }}/packages/sqlynx-app/build/reloc
449+
name: dashql_pwa_reloc
450+
path: ${{ github.workspace }}/packages/dashql-app/build/reloc
451451

452452
- name: Setup cargo cache
453453
uses: actions/cache@v4
@@ -478,15 +478,15 @@ jobs:
478478
run: |
479479
yarn install --frozen-lockfile
480480
481-
- name: Freeze SQLynx version
481+
- name: Freeze DashQL version
482482
shell: bash
483483
run: |
484-
chmod +x ./.bin/sqlynx-pack
485-
./.bin/sqlynx-pack freeze
484+
chmod +x ./.bin/dashql-pack
485+
./.bin/dashql-pack freeze
486486
487487
- name: Run tests
488488
run: |
489-
cargo test -p sqlynx-native
489+
cargo test -p dashql-native
490490
491491
- name: Build native app for macOS without code signing
492492
if: ${{ !inputs.signed }}
@@ -523,14 +523,14 @@ jobs:
523523
524524
- uses: actions/upload-artifact@v4
525525
with:
526-
name: sqlynx_native_macos_dmg
526+
name: dashql_native_macos_dmg
527527
path: ${{ github.workspace }}/target/universal-apple-darwin/release/bundle/dmg/
528528
retention-days: 1
529529

530530
- uses: actions/upload-artifact@v4
531531
if: ${{ inputs.signed }}
532532
with:
533-
name: sqlynx_native_macos_update
533+
name: dashql_native_macos_update
534534
path: ${{ github.workspace }}/target/release/bundle/macos/
535535
retention-days: 1
536536

0 commit comments

Comments
 (0)