Skip to content

Commit

Permalink
fix: merging main
Browse files Browse the repository at this point in the history
  • Loading branch information
nadr0 committed Nov 8, 2024
2 parents fe9085d + d7660e2 commit a3e033d
Show file tree
Hide file tree
Showing 258 changed files with 9,758 additions and 1,936 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ updates:
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'daily'
interval: 'weekly'
reviewers:
- franknoirot
- irev-dev
- package-ecosystem: 'github-actions' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'daily'
interval: 'weekly'
reviewers:
- adamchalmers
- jessfraz
- package-ecosystem: 'cargo' # See documentation for possible values
directory: '/src/wasm-lib/' # Location of package manifests
schedule:
interval: 'daily'
interval: 'weekly'
reviewers:
- adamchalmers
- jessfraz
7 changes: 4 additions & 3 deletions .github/workflows/build-test-publish-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ jobs:
- name: Build the app (release)
if: ${{ env.BUILD_RELEASE == 'true' }}
env:
PUBLISH_FOR_PULL_REQUEST: true
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
Expand Down Expand Up @@ -370,23 +371,23 @@ jobs:
project_id: ${{ env.GOOGLE_CLOUD_PROJECT_ID }}

- name: Upload release files to public bucket
uses: google-github-actions/[email protected].0
uses: google-github-actions/[email protected].1
with:
path: out
glob: 'Zoo*'
parent: false
destination: ${{ env.BUCKET_DIR }}

- name: Upload update endpoint to public bucket
uses: google-github-actions/[email protected].0
uses: google-github-actions/[email protected].1
with:
path: out
glob: 'latest*'
parent: false
destination: ${{ env.BUCKET_DIR }}

- name: Upload download endpoint to public bucket
uses: google-github-actions/[email protected].0
uses: google-github-actions/[email protected].1
with:
path: last_download.json
destination: ${{ env.BUCKET_DIR }}
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,31 @@ jobs:
- name: Run codespell
run: codespell --config .codespellrc # Edit this file to tweak the typo list and other configuration.

yarn-unit-test-kcl-samples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'

- run: yarn install
- run: yarn build:wasm

- run: yarn simpleserver:bg
if: ${{ github.event_name != 'release' && github.event_name != 'schedule' }}

- name: Install Chromium Browser
if: ${{ github.event_name != 'release' && github.event_name != 'schedule' }}
run: yarn playwright install chromium --with-deps

- name: run unit tests for kcl samples
if: ${{ github.event_name != 'release' && github.event_name != 'schedule' }}
run: yarn test:unit:kcl-samples
env:
VITE_KC_DEV_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}

yarn-unit-test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions docs/kcl/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ layout: manual
* [`rem`](kcl/rem)
* [`revolve`](kcl/revolve)
* [`segAng`](kcl/segAng)
* [`segEnd`](kcl/segEnd)
* [`segEndX`](kcl/segEndX)
* [`segEndY`](kcl/segEndY)
* [`segLen`](kcl/segLen)
* [`segStart`](kcl/segStart)
* [`segStartX`](kcl/segStartX)
* [`segStartY`](kcl/segStartY)
* [`shell`](kcl/shell)
* [`sin`](kcl/sin)
* [`sqrt`](kcl/sqrt)
Expand Down
53 changes: 53 additions & 0 deletions docs/kcl/segEnd.md

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions docs/kcl/segStart.md

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions docs/kcl/segStartX.md

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions docs/kcl/segStartY.md

Large diffs are not rendered by default.

Loading

0 comments on commit a3e033d

Please sign in to comment.