Add build dependencies on gcc
and hidapi
#14
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: brew install | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
version: | |
- 'null' | |
- '0.1.0' | |
- '0.3.2' | |
- '0.3.3' | |
- '0.3.4' | |
- '0.3.7' | |
- '0.3.8' | |
- '0.3.9' | |
- '1.0.0' | |
- '2.0.0' | |
- '3.0.0' | |
- '3.1.0' | |
- '4.0.0' | |
- '5.0.0' | |
- '6.0.0' | |
- '7.0.0' | |
- '8.0.0' | |
- '8.0.1' | |
- '9.0.0' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: 'recursive' | |
- name: Set up Homebrew (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Set up Homebrew (Linux) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential curl file git | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Install Xiond | |
run: | | |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then | |
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH" | |
echo "PATH: $PATH" | |
fi | |
brew tap burnt-labs/xion | |
brew install go | |
echo "Matrix OS: ${{ matrix.os }}" | |
echo "Matrix version: ${{ matrix.version }}" | |
if [[ "${{ matrix.version }}" == "null" ]]; then | |
echo "Installing latest version of xiond" | |
brew install xiond | |
else | |
echo "Installing xiond version ${{ matrix.version }}" | |
brew install xiond@${{ matrix.version }} | |
fi | |
xiond version --long |