Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
if: inputs.cache == 'true' && steps.yarn-cache.outputs.cache-hit == 'true'
# Retry in case of server error from registry.
# Wait 60 seconds to give the registry server time to heal.
- run: bun install --linker=hoisted --trust || sleep 60 && bun install --linker=hoisted --trust
- run: bun install --trust || sleep 60 && bun install --trust
shell: bash
env:
_DD_IGNORE_ENGINES: 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ runs:
registry-url: ${{ inputs.registry-url || 'https://registry.npmjs.org' }}
- uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2
with:
bun-version: "1.2.23"
bun-version: "1.3.1"
4 changes: 2 additions & 2 deletions .github/workflows/platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,8 @@ jobs:
with:
version: ${{ matrix.version }}
- uses: ./.github/actions/install
- run: bun add --linker=hoisted --ignore-scripts mocha@10 # Use older mocha to support old Node.js versions
- run: bun add --linker=hoisted --ignore-scripts express@4 # Use older express to support old Node.js versions
- run: bun add --ignore-scripts mocha@10 # Use older mocha to support old Node.js versions
- run: bun add --ignore-scripts express@4 # Use older express to support old Node.js versions
- run: node node_modules/.bin/mocha --colors --timeout 30000 integration-tests/init.spec.js
- uses: DataDog/junit-upload-github-action@762867566348d59ac9bcf479ebb4ec040db8940a # v2.0.0
if: always()
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/helpers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ async function createSandbox (

await fs.mkdir(folder, { recursive: true })
const addOptions = { cwd: folder, env: restOfEnv }
const addFlags = ['--linker=hoisted', '--trust']
const addFlags = ['--trust']
if (!existsSync(out)) {
execHelper(`${BUN} pm pack --quiet --gzip-level 0 --filename ${out}`, { env: restOfEnv })
}
Expand Down