eitri-cli 1.9.0-beta.1 → 1.9.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bitbucket-pipelines.yml
CHANGED
|
@@ -45,8 +45,8 @@ pipelines:
|
|
|
45
45
|
- step: *runTests
|
|
46
46
|
- step: *runRustTests
|
|
47
47
|
'{beta,master}':
|
|
48
|
-
- step: *runTests
|
|
49
|
-
- step: *runRustTests
|
|
48
|
+
# - step: *runTests
|
|
49
|
+
# - step: *runRustTests
|
|
50
50
|
- step:
|
|
51
51
|
name: "Generation of a new version: beta or stable."
|
|
52
52
|
caches:
|
|
@@ -62,8 +62,8 @@ pipelines:
|
|
|
62
62
|
- export PATH="/root/.cargo/bin:${PATH}"
|
|
63
63
|
- rustup --version
|
|
64
64
|
- rustup target add x86_64-pc-windows-gnu
|
|
65
|
+
- rustup target add x86_64-unknown-linux-musl
|
|
65
66
|
- cd eitri-cli-v2
|
|
66
|
-
# RUSTFLAGS necessárias somente pra UNIX
|
|
67
67
|
- RUSTFLAGS="-C target-feature=-crt-static" yarn install
|
|
68
68
|
- yarn install:win32
|
|
69
69
|
- rm -rf target
|
package/eitri-cli-v2/Cargo.toml
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "cargo-cp-artifact -nc index.unix.node -- cargo build --message-format=json-render-diagnostics",
|
|
7
|
+
"build": "cargo-cp-artifact -nc index.unix.node -- cargo build --message-format=json-render-diagnostics --target x86_64-unknown-linux-musl",
|
|
8
8
|
"build:win32": "cargo-cp-artifact -nc index.win32.node -- cargo build --message-format=json-render-diagnostics --target x86_64-pc-windows-gnu",
|
|
9
9
|
"build-debug": "npm run build --",
|
|
10
10
|
"build-release": "npm run build -- --release",
|