-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (42 loc) · 1.38 KB
/
test_macos_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
name: Test Mac OS install
on:
workflow_run:
workflows: ["Release packages"]
types:
- completed
workflow_dispatch:
jobs:
test_homebrew_install:
name: Test Homebrew install
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
path: salami-repo
- name: Tap Salami
run: brew tap petrgazarov/salami
- name: Install Salami
run: brew install salami
- name: Install Terraform
run: brew install terraform
- name: Get latest release tag
id: latest-tag
run: |
set -euo pipefail
LATEST_TAG=$(curl --silent "https://api.github.com/repos/${{ github.repository }}/releases/latest" | jq -r .tag_name)
echo "tag=${LATEST_TAG}" >> $GITHUB_OUTPUT
- name: Verify version
run: |
set -euo pipefail
version=$(salami version) || exit 1
if [[ $version != "Salami version ${{ steps.latest-tag.outputs.tag }}" ]]; then
echo "Version mismatch. Expected: Salami ${{ steps.latest-tag.outputs.tag }}, Got: $version"
exit 1
fi
- name: Verify compile
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: salami-repo/.github/scripts/verify-compile/run_bash.sh salami-repo
- name: Uninstall Salami
run: brew uninstall salami