We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f04a49 commit f019c5eCopy full SHA for f019c5e
2 files changed
.github/workflows/build.yml
@@ -8,7 +8,7 @@ on:
8
9
jobs:
10
build:
11
- uses: Datadog/action-prebuildify/.github/workflows/build.yml@main
+ uses: Datadog/action-prebuildify/.github/workflows/build.yml@rochdev/install-cargo-for-rust
12
with:
13
package-manager: 'npm'
14
cache: false
test/crashtracker/index.js
@@ -9,11 +9,7 @@ const uid = process.getuid()
const gid = process.getgid()
const opts = { cwd, stdio, uid, gid }
-if (process.env.CI) {
- execSync(`curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --verbose && npm run --silent build`, opts)
-} else {
15
- execSync('npm run --silent build', opts)
16
-}
+execSync('npm run --silent build', opts)
17
18
const express = require('express')
19
const bodyParser = require('body-parser')
0 commit comments