update release workflow to use latest libusb and update instructions … #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
branches: | |
- ci | |
jobs: | |
build: | |
name: Create Release | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
run: | | |
rustup self update | |
rustup toolchain install stable --profile minimal | |
- name: Install additional targets | |
run: | | |
rustup target add x86_64-pc-windows-gnu | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y p7zip-full build-essential pkg-config \ | |
libusb-dev libusb-1.0 gcc-mingw-w64-x86-64 | |
- name: Download libusb DLLs for Windows | |
run: | | |
wget https://github.com/libusb/libusb/releases/download/v1.0.26/libusb-1.0.26-binaries.7z | |
mkdir libusb | |
mv libusb-1.0.26-binaries.7z libusb/ | |
cd libusb | |
7z x libusb-1.0.26-binaries.7z | |
- name: Build for Linux x86_64 | |
run: | | |
cargo clean | |
cargo build --release | |
cp target/release/ecpdap ecpdap_linux_x86_64 | |
- name: Build for Windows x86_64 | |
env: | |
PKG_CONFIG_ALLOW_CROSS: 1 | |
RUSTFLAGS: -L ${{ github.workspace }}/libusb/libusb-1.0.26-binaries/VS2015-x64/dll | |
run: | | |
cargo clean | |
cargo build --release --target x86_64-pc-windows-gnu | |
cp target/x86_64-pc-windows-gnu/release/ecpdap.exe ecpdap_windows_x86_64.exe | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: true | |
prerelease: false | |
body: | | |
In this release: | |
The following pre-built files are available: | |
* `ecpdap_linux_x86_64`: ecpdap software for Linux (64-bit) | |
* `ecpdap_windows_x86_64.exe`: ecpdap software for Windows (64-bit) | |
ecpdap requires libusb: | |
* on Linux, it usually suffices to install libusb-1.0 | |
* on Windows, download the pre-built DLLs from [libusb.info](https://libusb.info) and either install them system-wide or place `libusb-1.0.dll` from `VS2015-x64/dll/` in the same directory as the ecpdap executable. | |
- name: Upload ecpdap for Linux x86_64 | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ecpdap_linux_x86_64 | |
asset_name: ecpdap_linux_x86_64 | |
asset_content_type: application/octet-stream | |
- name: Upload ecpdap for Windows x86_64 | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ecpdap_windows_x86_64.exe | |
asset_name: ecpdap_windows_x86_64.exe | |
asset_content_type: application/octet-stream |