diff --git a/.github/workflows/jetbrains-release.yaml b/.github/workflows/jetbrains-release.yaml index 461b01baa6..03becdd8a2 100644 --- a/.github/workflows/jetbrains-release.yaml +++ b/.github/workflows/jetbrains-release.yaml @@ -337,7 +337,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: core-logs-${{ matrix.platform }}-${{ matrix.arch }} - path: binary/.continue/logs/core.log + path: ~/.continue/logs/core.log # Run tests and upload a code coverage report test: diff --git a/binary/test/binary.test.ts b/binary/test/binary.test.ts index 26307fa4b0..3554aed27b 100644 --- a/binary/test/binary.test.ts +++ b/binary/test/binary.test.ts @@ -83,7 +83,7 @@ describe("Test Suite", () => { fs.chmodSync(binaryPath, 0o755); console.log("Execute permissions set for the binary"); - if (false && platform === "darwin") { + if (platform === "darwin") { const indexNodePath = path.join(binaryDir, "index.node"); const filesToUnquarantine = [binaryPath, indexNodePath]; @@ -118,6 +118,7 @@ describe("Test Suite", () => { subprocess = spawn(binaryPath, { env: { ...process.env, CONTINUE_GLOBAL_DIR }, }); + console.log("Successfully spawned subprocess"); } catch (error) { console.error("Error spawning subprocess:", error); throw error;