Skip to content

Commit 1bf5fb2

Browse files
chore: add instrument-hooks submodule
1 parent 55541c7 commit 1bf5fb2

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"**/dist/**",
1111
"**/node_modules/**",
1212
"**/rollup.config.ts",
13-
"**/jest.config.js"
13+
"**/jest.config.js",
14+
"packages/core/src/native_core/instruments/hooks/**"
1415
],
1516
"settings": {
1617
"import/parsers": {

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
- uses: "actions/checkout@v4"
1414
with:
1515
fetch-depth: 0
16+
submodules: true
1617
- name: Install valgrind
1718
run: |
1819
sudo apt-get update
@@ -32,6 +33,9 @@ jobs:
3233
examples: ${{ steps.list-examples.outputs.examples }}
3334
steps:
3435
- uses: "actions/checkout@v4"
36+
with:
37+
fetch-depth: 0
38+
submodules: true
3539
# list the directories in ./examples and output them to a github action workflow variables as a JSON array
3640
- run: |
3741
examples=$(find ./examples -maxdepth 1 -mindepth 1 -type d -printf '%f\n' | jq -R -s -c 'split("\n") | map(select(length > 0))')
@@ -51,6 +55,7 @@ jobs:
5155
- uses: "actions/checkout@v4"
5256
with:
5357
fetch-depth: 0
58+
submodules: true
5459
- name: Install valgrind
5560
run: |
5661
sudo apt-get update

.github/workflows/codspeed.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: "actions/checkout@v4"
1515
with:
1616
fetch-depth: 0
17+
submodules: true
1718
- name: Install valgrind
1819
run: |
1920
sudo apt-get update

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20+
submodules: true
2021
- uses: pnpm/action-setup@v2
2122
- uses: actions/setup-node@v3
2223
with:

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "packages/core/src/native_core/instruments/hooks"]
2+
path = packages/core/src/native_core/instruments/hooks
3+
url = [email protected]:CodSpeedHQ/instrument-hooks.git
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit a9ae7a4d897dbb694cb0355c9994141a7c4a1ab9
Submodule hooks added at d6bd821

0 commit comments

Comments
 (0)