Skip to content

Commit

Permalink
Build enso_parser with --release (#10295)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaroslavTulach authored Jun 17, 2024
1 parent 0b4ea9a commit dc7ae17
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/enso4igv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
env:
RUSTFLAGS: "-C target-feature=-crt-static"
run: |
cargo build -p enso-parser-jni -Z unstable-options --target x86_64-unknown-linux-musl --out-dir target/lib/
cargo build --release -p enso-parser-jni -Z unstable-options --target x86_64-unknown-linux-musl --out-dir target/lib/
- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -49,7 +49,7 @@ jobs:
env:
RUSTFLAGS: "-C target-feature=-crt-static"
run: |
cargo build -p enso-parser-jni -Z unstable-options --out-dir target/lib/x86_64
cargo build --release -p enso-parser-jni -Z unstable-options --out-dir target/lib/x86_64
- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -69,7 +69,7 @@ jobs:
env:
RUSTFLAGS: "-C target-feature=-crt-static"
run: |
cargo build -p enso-parser-jni -Z unstable-options --out-dir target/lib/aarch64/
cargo build --release -p enso-parser-jni -Z unstable-options --out-dir target/lib/aarch64/
- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -89,7 +89,7 @@ jobs:
env:
RUSTFLAGS: "-C target-feature=-crt-static"
run: |
cargo build -p enso-parser-jni -Z unstable-options --out-dir target/lib/
cargo build --release -p enso-parser-jni -Z unstable-options --out-dir target/lib/
- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

- name: List Binaries
run: |
find . | grep -i enso.parser
find . | grep -i enso.parser | xargs ls -ld
- name: Set up Rustup
run: rustup show
Expand Down

0 comments on commit dc7ae17

Please sign in to comment.