Skip to content

Commit

Permalink
Remove macos 64 from gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed Oct 31, 2024
1 parent 62f09a6 commit 6bfb7aa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: "[FEAT] ____"
labels: enhancement
labels: new
assignees: raub

---
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Build
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12, macos-14, [self-hosted, linux, ARM64]]
os: [ubuntu-20.04, windows-2022, macos-14, [self-hosted, linux, ARM64]]

runs-on: ${{ matrix.os }}

Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ This is a part of [Node3D](https://github.com/node-3d) project.
npm i -s segfault-raub
```

This module installs platform-specific **signal** listeners
(see `sigaction` for **Unix** and `SetUnhandledExceptionFilter` for **Windows**).
Whenever a signal is raised, the module prints a native stack trace (if possible) to both
**STDERR** and to the "**segfault.log**" file (if it exists inside "working directory").
This module report debug information on process crash (and some other events).
It doesn't affect the performance while the program is running normally.

The module prints to both
**STDERR** and to the **"segfault.log"** file (if it exists inside **"working directory"**).
If there is no such file, it
**won't be created**, so it is up to you if the log-file is needed.

Expand All @@ -34,12 +35,14 @@ and **WILL NOT** import their own **binaries**.

---

If you want to use a custom location instead of "**segfault.log**", use
If you want to use a custom location instead of "**segfault.log**", use:

```js
require('segfault-raub').setLogPath("C:/my/log/file.txt");
```

**You must create this file first, it must be there when the crash happens.**

See the [TypeScript declarations](/index.d.ts) with comments.


Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
"install.js",
"LICENSE",
"LICENSE_node-segfault-handler",
"package.json",
"README.md"
"package.json"
],
"scripts": {
"postinstall": "node install",
Expand Down

0 comments on commit 6bfb7aa

Please sign in to comment.