1
+ commit 94f6b0dfaf5d5871d56d27a2bda0205a61f1e261
2
+ Author: Koen De Vleeschauwer <kdv@kdvelectronics.eu>
3
+ Date: Fri Jun 30 19:31:14 2023 +0200
4
+
5
+ arm64
6
+
1
7
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
2
- index 77c506b..d5b63df 100644
8
+ index 28e07c6..28549c2 100644
3
9
--- a/.github/workflows/build.yml
4
10
+++ b/.github/workflows/build.yml
5
11
@@ -39,17 +39,18 @@ jobs:
@@ -9,7 +15,7 @@ index 77c506b..d5b63df 100644
9
15
- - os: windows-2019
10
16
- certificate-secret: WINDOWS_SIGNING_CERTIFICATE_PFX # Name of the secret that contains the certificate.
11
17
- certificate-password-secret: WINDOWS_SIGNING_CERTIFICATE_PASSWORD # Name of the secret that contains the certificate password.
12
- - certificate-extension: pfx # File extension for the certificate.
18
+ - certificate-extension: pfx # File extension for the certificate.
13
19
- - os: ubuntu-20.04
14
20
- - os: macos-latest
15
21
- # APPLE_SIGNING_CERTIFICATE_P12 secret was produced by following the procedure from:
@@ -20,7 +26,7 @@ index 77c506b..d5b63df 100644
20
26
+ # - os: windows-2019
21
27
+ # certificate-secret: WINDOWS_SIGNING_CERTIFICATE_PFX # Name of the secret that contains the certificate.
22
28
+ # certificate-password-secret: WINDOWS_SIGNING_CERTIFICATE_PASSWORD # Name of the secret that contains the certificate password.
23
- + # certificate-extension: pfx # File extension for the certificate.
29
+ + # certificate-extension: pfx # File extension for the certificate.
24
30
+ # - os: ubuntu-20.04
25
31
+ # - os: macos-latest
26
32
+ # # APPLE_SIGNING_CERTIFICATE_P12 secret was produced by following the procedure from:
@@ -51,32 +57,28 @@ index 77c506b..d5b63df 100644
51
57
- path: '*macOS_64bit.dmg'
52
58
name: macOS_dmg
53
59
- path: '*macOS_64bit.zip'
54
- diff --git a/arduino-ide-extension/scripts/download-ls.js b/arduino-ide-extension/scripts/download-ls.js
55
- index 991dfb0..dbfe6d4 100755
56
- --- a/arduino-ide-extension/scripts/download-ls.js
57
- +++ b/arduino-ide-extension/scripts/download-ls.js
58
- @@ -88,6 +88,12 @@
59
- lsSuffix = 'Linux_64bit.tar.gz';
60
- clangdSuffix = 'Linux_64bit';
61
- break;
62
- + case 'linux-arm64':
63
- + clangdExecutablePath = path.join(build, 'clangd');
64
- + clangFormatExecutablePath = path.join(build, 'clang-format');
65
- + lsSuffix = 'Linux_ARM64.tar.gz';
66
- + clangdSuffix = 'Linux_ARM64';
67
- + break;
68
- case 'win32-x64':
69
- clangdExecutablePath = path.join(build, 'clangd.exe');
70
- clangFormatExecutablePath = path.join(build, 'clang-format.exe');
71
60
diff --git a/arduino-ide-extension/src/test/node/boards-service-impl.slow-test.ts b/arduino-ide-extension/src/test/node/boards-service-impl.slow-test.ts
72
- index fe89cc4..c217487 100644
61
+ index de243d2..557de7b 100644
73
62
--- a/arduino-ide-extension/src/test/node/boards-service-impl.slow-test.ts
74
63
+++ b/arduino-ide-extension/src/test/node/boards-service-impl.slow-test.ts
75
- @@ -25 ,6 +25 ,7 @@ describe('boards-service-impl', () => {
64
+ @@ -20 ,6 +20 ,7 @@ describe('boards-service-impl', () => {
76
65
77
66
describe('search', () => {
78
67
it('should run search', async function () {
79
68
+ this.timeout(20_000);
80
69
const result = await boardService.search({});
81
70
expect(result).is.not.empty;
82
71
});
72
+ diff --git a/arduino-ide-extension/src/test/node/test-bindings.ts b/arduino-ide-extension/src/test/node/test-bindings.ts
73
+ index 30d8513..c83ef9a 100644
74
+ --- a/arduino-ide-extension/src/test/node/test-bindings.ts
75
+ +++ b/arduino-ide-extension/src/test/node/test-bindings.ts
76
+ @@ -409,7 +409,7 @@ export async function startDaemon(
77
+ configService.onStart();
78
+ daemon.onStart();
79
+ await Promise.all([
80
+ - waitForEvent(daemon.onDaemonStarted, 10_000),
81
+ + waitForEvent(daemon.onDaemonStarted, 20_000),
82
+ coreClientProvider.client,
83
+ ]);
84
+ if (startCustomizations) {
0 commit comments