Skip to content

Commit

Permalink
ci: fix build error on windows
Browse files Browse the repository at this point in the history
See sfackler/rust-openssl#2149.

Apparently, in the Windows runner, commands executed in a `run` block
will use the version of Perl built into MinGW instead of the one
installed in the system, which breaks the openssl build because one of
the expected Perl modules can't be found.

There are different ways to fix this. The one suggested in this PR is
returning back to using the cargo action for "normal" (not cross
compilation) builds like it used to work before. My understanding is
that it helps by running cargo directly as opposed to running it from
Bash.

Alternatively, we could bypass the corresponding build steps in openssl
by providing locations of openssl source code via environment variables
like it is suggested in the rust-openssl issue linked above.
  • Loading branch information
malor committed Nov 26, 2024
1 parent 8c7f829 commit 29825cd
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build and Release

on:
push:
branches: [ master ]
branches: [ master, release ]
tags:
- "v*"

Expand Down Expand Up @@ -75,33 +75,39 @@ jobs:
- name: Setup PostgreSQL
uses: ikalnytskyi/action-setup-postgres@v6

- id: build
- run: |
echo "HOST=$(rustc -vV | grep host: | awk '{print $2}')" >> $GITHUB_ENV
- name: Build
if: ${{ env.HOST == matrix.target }}
uses: actions-rs/cargo@v1
with:
command: build
args: --release

- name: Build (cross-compile)
if: ${{ env.HOST != matrix.target }}
run: |
export HOST=$(rustc -vV | grep host: | awk '{print $2}')
if [ "$HOST" = "$TARGET" ]; then
cargo build --release --target ${TARGET}
else
cargo install cross
cross build --release --target ${TARGET}
fi
cargo install cross
cross build --release --target ${{ matrix.target }}
pushd target/${TARGET}/release
if [[ "$TARGET" =~ "windows" ]]; then
7z a $ASSET_NAME xsnippet-api.exe
- name: Upload artifacts
run: |
pushd target/${{ matrix.target }}/release
if [[ "${{ matrix.target }}" =~ "windows" ]]; then
7z a ${{ matrix.name }} xsnippet-api.exe
else
tar cvzf $ASSET_NAME xsnippet-api
tar cvzf ${{ matrix.name }} xsnippet-api
fi
gh release upload $RELEASE_TAG $ASSET_NAME
gh release upload $RELEASE_TAG ${{ matrix.name }}
popd
echo "asset_path=target/${TARGET}/release/$ASSET_NAME" >> $GITHUB_OUTPUT
echo "ASSET_PATH=target/${{ matrix.target }}/release/${{ matrix.name }}" >> $GITHUB_ENV
env:
ASSET_NAME: ${{ matrix.name }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ env.GITHUB_REPOSITORY }}
TARGET: ${{ matrix.target }}
RELEASE_TAG: ${{ needs.create_release.outputs.release_tag }}

- uses: actions/attest-build-provenance@v1
with:
subject-path: ${{ steps.build.outputs.asset_path }}
subject-path: ${{ env.ASSET_PATH }}

0 comments on commit 29825cd

Please sign in to comment.