mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-05 05:57:38 +03:00
Simpler incantation to build Debian packages
This commit is contained in:
parent
b81cc3e5d2
commit
37dc663b6e
1 changed files with 18 additions and 12 deletions
30
.github/workflows/release.yml
vendored
30
.github/workflows/release.yml
vendored
|
@ -64,19 +64,12 @@ jobs:
|
||||||
zip -9 -r doh-proxy_${{ steps.get_version.outputs.VERSION }}_windows-x86_64.zip doh-proxy
|
zip -9 -r doh-proxy_${{ steps.get_version.outputs.VERSION }}_windows-x86_64.zip doh-proxy
|
||||||
rm -fr doh-proxy
|
rm -fr doh-proxy
|
||||||
|
|
||||||
- name: Debian package
|
- name: Debian packages
|
||||||
run: |
|
run: |
|
||||||
rustup target add x86_64-unknown-linux-musl
|
rustup target add x86_64-unknown-linux-musl
|
||||||
env \
|
env RUSTFLAGS="-C strip=symbols" cargo deb --no-strip --cargo-build=zigbuild --target=x86_64-unknown-linux-musl
|
||||||
RUSTFLAGS="-C lto=yes -C strip=symbols" \
|
rustup target add aarch64-unknown-linux-musl
|
||||||
__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly \
|
env RUSTFLAGS="-C strip=symbols" cargo deb --no-strip --cargo-build=zigbuild --target=aarch64-unknown-linux-musl
|
||||||
CARGO_UNSTABLE_TARGET_APPLIES_TO_HOST=true \
|
|
||||||
CARGO_TARGET_APPLIES_TO_HOST=false \
|
|
||||||
RANLIB="zig ranlib" \
|
|
||||||
CARGO_LINKER="zig cc --target=x86_64-linux-musl" \
|
|
||||||
CC="zig cc --target=x86_64-linux-musl" \
|
|
||||||
CXX="zig c++ --target=x86_64-linux-musl" \
|
|
||||||
cargo deb --target=x86_64-unknown-linux-musl
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create_release
|
id: create_release
|
||||||
|
@ -89,7 +82,7 @@ jobs:
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: false
|
prerelease: false
|
||||||
|
|
||||||
- name: Upload Debian package
|
- name: Upload Debian package for x86_64
|
||||||
id: upload-release-asset-debian
|
id: upload-release-asset-debian
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
|
@ -97,9 +90,22 @@ jobs:
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_name: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb"
|
asset_name: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb"
|
||||||
|
asset_path: "target/x86_64-unknown-linux-musl/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb"
|
||||||
asset_path: "target/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb"
|
asset_path: "target/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_amd64.deb"
|
||||||
asset_content_type: application/x-debian-package
|
asset_content_type: application/x-debian-package
|
||||||
|
|
||||||
|
- name: Upload Debian package for aarch64
|
||||||
|
id: upload-release-asset-debian
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_name: "doh-proxy_${{ steps.get_version.outputs.VERSION }}_aarch64.deb"
|
||||||
|
asset_path: "target/aarch64-unknown-linux-musl/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_aarch64.deb"
|
||||||
|
asset_path: "target/debian/doh-proxy_${{ steps.get_version.outputs.VERSION }}_aarch64.deb"
|
||||||
|
asset_content_type: application/x-debian-package
|
||||||
|
|
||||||
- name: Upload tarball for linux-x86_64
|
- name: Upload tarball for linux-x86_64
|
||||||
id: upload-release-asset-tarball-linux-x86_64
|
id: upload-release-asset-tarball-linux-x86_64
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue