mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Add Github actions
This commit is contained in:
parent
3b3bb6f0e7
commit
cb31469004
4 changed files with 54 additions and 2 deletions
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
open_collective: dnscrypt
|
37
.github/workflows/rust.yml
vendored
Normal file
37
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Rust
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: hecrj/setup-rust-action@master
|
||||
with:
|
||||
rust-version: nightly
|
||||
- name: Check Cargo availability
|
||||
run: cargo --version
|
||||
- name: Check Rustup default toolchain
|
||||
run: rustup default | grep nightly
|
||||
- name: Install cargo-deb
|
||||
run: cargo install --debug cargo-deb
|
||||
- name: Build
|
||||
run: |
|
||||
echo 'lto = "fat"' >> Cargo.toml
|
||||
env RUSTFLAGS="-C link-arg=-s" cargo build --release
|
||||
mkdir doh-proxy
|
||||
mv target/release/doh-proxy doh-proxy/
|
||||
cp README.md doh-proxy/
|
||||
- name: Debian package
|
||||
run: |
|
||||
cargo deb
|
||||
- uses: actions/upload-artifact@master
|
||||
with:
|
||||
name: doh-proxy-linux-x86_64
|
||||
path: doh-proxy
|
||||
- uses: actions/upload-artifact@master
|
||||
with:
|
||||
name: debian
|
||||
path: target/debian
|
Loading…
Add table
Add a link
Reference in a new issue