-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (70 loc) · 2.05 KB
/
install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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"
export LEDGER_ENABLED=false
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