Skip to content

Commit e976baf

Browse files
authored
Merge pull request #44 from MatrixAI/feature-sync-native
Synchronise Changes from Native Addon Development
2 parents 758a9d2 + 5359723 commit e976baf

18 files changed

+853
-200
lines changed

.github/workflows/codesee-arch-diagram.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,19 @@ jobs:
5454
with:
5555
ruby-version: '3.0'
5656

57-
# CodeSee Maps Rust support uses a static binary so there's no setup step required.
57+
# We need the rust toolchain because it uses rustc and cargo to inspect the package
58+
- name: Configure Rust 1.x stable
59+
uses: actions-rs/toolchain@v1
60+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).rust }}
61+
with:
62+
toolchain: stable
5863

5964
- name: Generate Map
6065
id: generate-map
6166
uses: Codesee-io/codesee-map-action@latest
6267
with:
6368
step: map
69+
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
6470
github_ref: ${{ github.ref }}
6571
languages: ${{ steps.detect-languages.outputs.languages }}
6672

@@ -71,7 +77,7 @@ jobs:
7177
step: mapUpload
7278
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
7379
github_ref: ${{ github.ref }}
74-
80+
7581
- name: Insights
7682
id: insights
7783
uses: Codesee-io/codesee-map-action@latest

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
/dist
33
.env*
44
!.env.example
5+
# nix
56
/result*
67
/builds
8+
# node-gyp
9+
/build
10+
# prebuildify
11+
/prebuilds
712

813
# Logs
914
logs

0 commit comments

Comments
 (0)