mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
chore: set DISABLE_V8_COMPILE_CACHE in docker test (#2307)
This commit is contained in:
parent
4496ffd220
commit
af68b685f5
2
.github/workflows/test-release.yaml
vendored
2
.github/workflows/test-release.yaml
vendored
@ -484,7 +484,7 @@ jobs:
|
||||
run: |
|
||||
node -e "console.info('docker-image=${{ matrix.settings.image }}'.replace('{:version}', ${{ matrix.node }}))" >> "$GITHUB_OUTPUT"
|
||||
- name: Run test
|
||||
run: docker run --rm ${{ matrix.settings.args }} -v ${{ github.workspace }}:/build -w /build ${{ steps.image-name.outputs.docker-image }} sh -c "yarn workspace @examples/napi test -s"
|
||||
run: docker run --rm ${{ matrix.settings.args }} -v ${{ github.workspace }}:/build -w /build ${{ steps.image-name.outputs.docker-image }} sh -c "DISABLE_V8_COMPILE_CACHE=1 yarn workspace @examples/napi test -s"
|
||||
|
||||
build-and-test-linux-armv7:
|
||||
name: stable - armv7-unknown-linux-gnueabihf - node@20
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
import { Buffer } from 'node:buffer'
|
||||
|
||||
import test from 'ava'
|
||||
|
||||
import {
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
import { Buffer } from 'node:buffer'
|
||||
import { exec } from 'node:child_process'
|
||||
import { join } from 'node:path'
|
||||
import { fileURLToPath } from 'node:url'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user