Skip to content

Commit

Permalink
Merge branch 'master' into feat/rce/duckdb
Browse files Browse the repository at this point in the history
  • Loading branch information
aldy505 authored Sep 8, 2024
2 parents cf4f42b + 1ed1455 commit 51d2ed2
Show file tree
Hide file tree
Showing 37 changed files with 6,160 additions and 6,054 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/sdks-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21', '1.22' ]
go-version: [ "1.22", "1.23" ]
timeout-minutes: 30
defaults:
run:
Expand All @@ -28,8 +28,6 @@ jobs:

- name: Test
run: go test -v -coverprofile=coverage.out -covermode=atomic -race ./...
env:
PESTO_TOKEN: ${{ secrets.PESTO_TOKEN }}

- name: Codecov
uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -63,8 +61,6 @@ jobs:

- name: Test
run: npx vitest run --coverage --threads=false
env:
PESTO_TOKEN: ${{ secrets.PESTO_TOKEN }}

- name: Codecov
uses: codecov/codecov-action@v3
Expand All @@ -91,8 +87,6 @@ jobs:

- name: Test
run: dotnet test Pesto.sln --collect "XPlat Code Coverage"
env:
PESTO_TOKEN: ${{ secrets.PESTO_TOKEN }}

- name: Codecov
uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -131,8 +125,6 @@ jobs:

- name: Run Pytest
run: pytest . --cov-report term-missing --cov-report xml --cov pesto
env:
PESTO_TOKEN: ${{ secrets.PESTO_TOKEN }}

- name: Code Coverage Report
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdks-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: lts
- run: npm install
- run: npm run build
- run: npm publish --access public --tag latest
Expand Down
27 changes: 22 additions & 5 deletions .github/workflows/systems-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
auth:
name: Auth
runs-on: ubuntu-latest
container: rust:1.77
container: rust:1.81
timeout-minutes: 30
defaults:
run:
Expand All @@ -31,7 +31,7 @@ jobs:
rce:
name: RCE
runs-on: ubuntu-latest
container: node:20.12
container: node:20.17
timeout-minutes: 30
defaults:
run:
Expand All @@ -57,7 +57,7 @@ jobs:
run: npm ci

- name: Lint
run: npx eslint --ext .ts,.js,.cjs .
run: npx biome ci

- name: Build
run: npm run build
Expand All @@ -79,7 +79,7 @@ jobs:
landing:
name: Landing
runs-on: ubuntu-latest
container: node:20.12
container: node:20.17
timeout-minutes: 30
defaults:
run:
Expand All @@ -105,7 +105,7 @@ jobs:
registration:
name: Registration
runs-on: ubuntu-latest
container: rust:1.77
container: rust:1.81
timeout-minutes: 30
defaults:
run:
Expand All @@ -124,6 +124,11 @@ jobs:
name: Build Database
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -166,6 +171,9 @@ jobs:
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -217,7 +225,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -259,7 +270,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 720
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -311,6 +325,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/systems-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
auth:
name: Auth
runs-on: ubuntu-latest
container: rust:1.77
container: rust:1.81
timeout-minutes: 30
defaults:
run:
Expand All @@ -28,7 +28,7 @@ jobs:
rce:
name: RCE
runs-on: ubuntu-latest
container: node:20.12
container: node:20.17
timeout-minutes: 30
defaults:
run:
Expand All @@ -54,7 +54,7 @@ jobs:
run: npm ci

- name: Lint
run: npx eslint --ext .ts,.js,.cjs .
run: npx biome ci

- name: Build
run: npm run build
Expand All @@ -76,7 +76,7 @@ jobs:
landing:
name: Landing
runs-on: ubuntu-latest
container: node:20.12
container: node:20.17
timeout-minutes: 30
defaults:
run:
Expand All @@ -102,7 +102,7 @@ jobs:
registration:
name: Registration
runs-on: ubuntu-latest
container: rust:1.77
container: rust:1.81
timeout-minutes: 30
defaults:
run:
Expand All @@ -120,6 +120,9 @@ jobs:
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -160,7 +163,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -201,7 +207,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 720
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -242,6 +251,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- auth
- rce
- landing
- registration
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion auth/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.77-bookworm AS builder
FROM rust:1.81-bookworm AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion landing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.12-alpine3.18
FROM node:20.17-alpine

WORKDIR /home/app

Expand Down
123 changes: 0 additions & 123 deletions rce/.eslintignore

This file was deleted.

19 changes: 0 additions & 19 deletions rce/.eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion rce/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.12
v20.17
Loading

0 comments on commit 51d2ed2

Please sign in to comment.