Skip to content

Commit

Permalink
ci: only build monolith
Browse files Browse the repository at this point in the history
  • Loading branch information
Itsusinn committed Jul 30, 2022
1 parent ea4b755 commit a6cdd3f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,56 +21,56 @@ jobs:
target: x86_64-unknown-linux-musl
release_name: x86_64-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: i686-unknown-linux-musl
release_name: i686-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: aarch64-unknown-linux-musl
release_name: aarch64-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true
# Windows GNU
- os: ubuntu-latest
target: x86_64-pc-windows-gnu
release_name: x86_64-windows.exe
postfix: ".exe"
extra_args: --no-default-features --features no-color
extra_args: "--no-default-features --features no-color monolith"
cross: true

- os: ubuntu-latest
target: i686-pc-windows-gnu
release_name: i686-windows.exe
postfix: ".exe"
extra_args: --no-default-features --features no-color
extra_args: "--no-default-features --features no-color monolith"
cross: true

- os: ubuntu-latest
target: x86_64-pc-windows-gnu
release_name: x86_64-windows-colored.exe
postfix: ".exe"
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: i686-pc-windows-gnu
release_name: i686-windows-colored.exe
postfix: ".exe"
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true
# Mac OSX
- os: macos-latest
target: x86_64-apple-darwin
release_name: x86_64-mac
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: false

steps:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,56 +21,56 @@ jobs:
target: x86_64-unknown-linux-musl
release_name: x86_64-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: i686-unknown-linux-musl
release_name: i686-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: aarch64-unknown-linux-musl
release_name: aarch64-linux
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true
# Windows GNU
- os: ubuntu-latest
target: x86_64-pc-windows-gnu
release_name: x86_64-windows.exe
postfix: ".exe"
extra_args: --no-default-features --features no-color
extra_args: "--no-default-features --features no-color monolith"
cross: true

- os: ubuntu-latest
target: i686-pc-windows-gnu
release_name: i686-windows.exe
postfix: ".exe"
extra_args: --no-default-features --features no-color
extra_args: "--no-default-features --features no-color monolith"
cross: true

- os: ubuntu-latest
target: x86_64-pc-windows-gnu
release_name: x86_64-windows-colored.exe
postfix: ".exe"
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true

- os: ubuntu-latest
target: i686-pc-windows-gnu
release_name: i686-windows-colored.exe
postfix: ".exe"
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: true
# Mac OSX
- os: macos-latest
target: x86_64-apple-darwin
release_name: x86_64-mac
postfix: ""
extra_args: ""
extra_args: "--no-default-features --features default-monolith"
cross: false

steps:
Expand Down

0 comments on commit a6cdd3f

Please sign in to comment.