chore(ci): Delete bcrypt in windows
The dependency is downloaded in ubuntu, but copied to windows so we need a explicit deletion
This commit is contained in:
parent
eb246cf11b
commit
aa802d129c
|
@ -89,8 +89,10 @@ jobs:
|
||||||
else {
|
else {
|
||||||
$pkg_name = "${{ matrix.profile }}-windows-$($version -replace '/').zip"
|
$pkg_name = "${{ matrix.profile }}-windows-$($version -replace '/').zip"
|
||||||
}
|
}
|
||||||
|
|
||||||
cd source
|
cd source
|
||||||
|
## We do not build/release bcrypt for windows package
|
||||||
|
Remove-Item -Recurse -Force -Path _build/default/lib/bcrypt/
|
||||||
|
Remove-Item -Force -Path rebar.lock
|
||||||
make ${{ matrix.profile }}
|
make ${{ matrix.profile }}
|
||||||
mkdir -p _packages/${{ matrix.profile }}
|
mkdir -p _packages/${{ matrix.profile }}
|
||||||
Compress-Archive -Path _build/${{ matrix.profile }}/rel/emqx -DestinationPath _build/${{ matrix.profile }}/rel/$pkg_name
|
Compress-Archive -Path _build/${{ matrix.profile }}/rel/emqx -DestinationPath _build/${{ matrix.profile }}/rel/$pkg_name
|
||||||
|
|
Loading…
Reference in New Issue