Skip to content

Commit

Permalink
Don't use cross for now
Browse files Browse the repository at this point in the history
as it will not work with jsonschema 0.13.3, which pulls in openssl.

The fix has been accepted (yay!) Stranger6667/jsonschema-rs#336

but until the next version of jsonschema is published, let's not cross-compile for other platforms.
  • Loading branch information
jqnatividad committed Jan 23, 2022
1 parent 9748751 commit c54a2f2
Showing 1 changed file with 55 additions and 55 deletions.
110 changes: 55 additions & 55 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
use-cross: false
strip: true
addl-build-args: --features=apply,generate,lua,foreach,python
- os: ubuntu-latest
os-name: linux
target: i686-unknown-linux-gnu
architecture: i686
artifact_name: qsv*
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-i686-unknown-linux-gnu.zip
use-cross: true
strip: true
addl-build-args: --features=apply,generate,lua,foreach
# - os: ubuntu-latest
# os-name: linux
# target: i686-unknown-linux-gnu
# architecture: i686
# artifact_name: qsv*
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-i686-unknown-linux-gnu.zip
# use-cross: true
# strip: true
# addl-build-args: --features=apply,generate,lua,foreach
- os: windows-latest
os-name: windows
target: x86_64-pc-windows-msvc
Expand All @@ -56,15 +56,15 @@ jobs:
use-cross: false
strip: false
addl-build-args: --features=apply,generate,lua,python
- os: windows-latest
os-name: windows
target: i686-pc-windows-msvc
architecture: i686
artifact_name: qsv*.exe
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-i686-pc-windows-msvc.zip
use-cross: true
strip: false
addl-build-args: --features=apply,generate,lua
# - os: windows-latest
# os-name: windows
# target: i686-pc-windows-msvc
# architecture: i686
# artifact_name: qsv*.exe
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-i686-pc-windows-msvc.zip
# use-cross: true
# strip: false
# addl-build-args: --features=apply,generate,lua
- os: windows-latest
os-name: windows
target: x86_64-pc-windows-gnu
Expand All @@ -83,43 +83,43 @@ jobs:
use-cross: false
strip: true
addl-build-args: --features=apply,generate,lua,foreach,python
- os: macos-latest
os-name: macos
target: aarch64-apple-darwin
architecture: aarch64
artifact_name: qsv*
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-aarch64-apple-darwin.zip
build-prep: true
use-cross: true
strip: true
addl-build-args: --features=apply,generate,lua,foreach
- os: ubuntu-latest
os-name: linux
target: aarch64-unknown-linux-gnu
architecture: aarch64
artifact_name: qsv*
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-aarch64-unknown-linux-gnu.zip
use-cross: true
strip: false
addl-build-args: --features=apply,generate,lua,foreach
- os: ubuntu-latest
os-name: linux
target: arm-unknown-linux-gnueabihf
architecture: arm
artifact_name: qsv*
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-arm-unknown-linux-gnueabihf.zip
use-cross: true
strip: false
addl-build-args: --no-default-features --features=apply,generate,lua,foreach
- os: ubuntu-latest
os-name: linux
target: arm-unknown-linux-musleabihf
architecture: arm
artifact_name: qsv*
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-arm-unknown-linux-musleabihf.zip
use-cross: true
strip: false
addl-build-args: --no-default-features --features=apply,generate,lua,foreach
# - os: macos-latest
# os-name: macos
# target: aarch64-apple-darwin
# architecture: aarch64
# artifact_name: qsv*
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-aarch64-apple-darwin.zip
# build-prep: true
# use-cross: true
# strip: true
# addl-build-args: --features=apply,generate,lua,foreach
# - os: ubuntu-latest
# os-name: linux
# target: aarch64-unknown-linux-gnu
# architecture: aarch64
# artifact_name: qsv*
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-aarch64-unknown-linux-gnu.zip
# use-cross: true
# strip: false
# addl-build-args: --features=apply,generate,lua,foreach
# - os: ubuntu-latest
# os-name: linux
# target: arm-unknown-linux-gnueabihf
# architecture: arm
# artifact_name: qsv*
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-arm-unknown-linux-gnueabihf.zip
# use-cross: true
# strip: false
# addl-build-args: --no-default-features --features=apply,generate,lua,foreach
# - os: ubuntu-latest
# os-name: linux
# target: arm-unknown-linux-musleabihf
# architecture: arm
# artifact_name: qsv*
# asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-arm-unknown-linux-musleabihf.zip
# use-cross: true
# strip: false
# addl-build-args: --no-default-features --features=apply,generate,lua,foreach

steps:
- name: Installing Rust toolchain
Expand Down

0 comments on commit c54a2f2

Please sign in to comment.