mirror of https://github.com/nodejs/node.git
Revert "build: add asan check in Github action"
This reverts commit 3ec4b21b1c
.
See: https://github.com/nodejs/node/issues/32257
PR-URL: https://github.com/nodejs/node/pull/32324
Reviewed-By: Matheus Marchini <mat@mmarchini.me>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
pull/32381/head
parent
d23eed256b
commit
1d49558273
|
@ -1,25 +0,0 @@
|
|||
name: node ASAN
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ubuntu-build:
|
||||
runs-on: ubuntu-latest
|
||||
container: gengjiawen/node-build:2020-02-14
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
# TODO(mmarchini): With V8 8.1, GitHub Actions doesn't have enough
|
||||
# memory to build with debug and ASAN. Allow this build to fail until
|
||||
# we figure out a workaround, or until we update to 8.2 (where build
|
||||
# is passing).
|
||||
continue-on-error: true
|
||||
run: |
|
||||
npx envinfo
|
||||
./configure --debug --enable-asan --ninja && ninja -C out/Debug
|
||||
- name: Test
|
||||
env:
|
||||
ASAN_OPTIONS: halt_on_error=0
|
||||
continue-on-error: true
|
||||
run: |
|
||||
python3 tools/test.py -J --mode=debug
|
Loading…
Reference in New Issue