Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
w273732573 committed Feb 25, 2024
1 parent e528f71 commit 9f46bb0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,39 @@ jobs:
os: ubuntu-20.04
target: aarch64-unknown-linux-musl
bin: wmproxy-linux-arm64
depend: |
sudo apt-get update
sudo apt-get install -y libssl-dev
- os_name: Linux-x86_64
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
bin: wmproxy-linux-amd64
depend: |
sudo apt-get update
sudo apt-get install -y libssl-dev
- os_name: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
bin: wmproxy-amd64.exe
depend: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
- os_name: macOS-x86_64
os: macOS-latest
target: x86_64-apple-darwin
bin: wmproxy-darwin-amd64
depend: echo "skip"
- os_name: macOS-aarch64
os: macOS-latest
target: aarch64-apple-darwin
bin: wmproxy-darwin-arm64
depend: echo "skip"
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- name: Install Depend
run: ${{ matrix.platform.depend }}
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
Expand Down

0 comments on commit 9f46bb0

Please sign in to comment.