Skip to content

Commit 72701b7

Browse files
committed
ci
1 parent 813c8bc commit 72701b7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build-wasm-no-docker.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
./emsdk install 3.1.59
4343
./emsdk activate 3.1.59
4444
source ./emsdk_env.sh
45-
working-directory: libpg-query
45+
working-directory: full
4646
- name: Build with Emscripten 🏗
4747
run: |
4848
source ./emsdk/emsdk_env.sh
4949
emmake make
5050
emmake make build
51-
working-directory: libpg-query
51+
working-directory: full
5252
- name: Archive production artifacts 🏛
5353
uses: actions/upload-artifact@v4
5454
with:
5555
name: wasm-artifacts
56-
path: libpg-query/wasm
56+
path: full/wasm

.github/workflows/build-wasm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
- name: Build WASM 🏗
4040
run: pnpm run build
41-
working-directory: libpg-query
41+
working-directory: full
4242

4343
- name: Archive production artifacts 🏛
4444
uses: actions/upload-artifact@v4
4545
with:
4646
name: wasm-artifacts
47-
path: libpg-query/wasm/
47+
path: full/wasm/
4848
retention-days: 7

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
package:
16-
- { name: 'libpg-query', path: 'libpg-query', version: '17' }
16+
- { name: 'full', path: 'full', version: '17' }
1717
- { name: 'v13', path: 'versions/13', version: '13' }
1818
- { name: 'v14', path: 'versions/14', version: '14' }
1919
- { name: 'v15', path: 'versions/15', version: '15' }
@@ -77,7 +77,7 @@ jobs:
7777
matrix:
7878
os: [ubuntu-latest, macos-latest, windows-latest]
7979
package:
80-
- { name: 'libpg-query', path: 'libpg-query', version: '17' }
80+
- { name: 'full', path: 'full', version: '17' }
8181
- { name: 'v13', path: 'versions/13', version: '13' }
8282
- { name: 'v14', path: 'versions/14', version: '14' }
8383
- { name: 'v15', path: 'versions/15', version: '15' }

scripts/analyze-sizes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function analyzePackage(packagePath, packageName) {
7575
function getVersionPackages() {
7676
const versionsDir = './versions';
7777
const packages = [
78-
{ path: './libpg-query', name: 'libpg-query (Original)', version: 'original' }
78+
{ path: './full', name: 'full (Full)', version: 'original' }
7979
];
8080

8181
if (fs.existsSync(versionsDir)) {

0 commit comments

Comments
 (0)