File tree Expand file tree Collapse file tree 4 files changed +84
-13
lines changed Expand file tree Collapse file tree 4 files changed +84
-13
lines changed Original file line number Diff line number Diff line change 1+ name : ci
2+ on :
3+ push :
4+ branches :
5+ - coatl
6+ pull_request :
7+ jobs :
8+ ci :
9+ if : github.repository == 'coatl-dev/homebrew-coatl-dev'
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Set up Homebrew
13+ id : set-up-homebrew
14+ uses : Homebrew/actions/setup-homebrew@master
15+
16+ - name : Cache Homebrew Bundler RubyGems
17+ id : cache
18+ uses : actions/cache@v4
19+ with :
20+ path : ${{ steps.set-up-homebrew.outputs.gems-path }}
21+ key : ${{ runner.os }}-${{ runner.arch }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
22+ restore-keys : ${{ runner.os }}-${{ runner.arch }}-rubygems-
23+
24+ - name : Install Homebrew Bundler RubyGems
25+ if : steps.cache.outputs.cache-hit != 'true'
26+ run : brew install-bundler-gems
27+
28+ - run : brew test-bot --only-cleanup-before
29+
30+ - run : brew test-bot --only-setup
31+
32+ - run : brew test-bot --only-tap-syntax
Original file line number Diff line number Diff line change 1- name : brew test-bot
1+ name : test-ignition@8.1
22on :
3- push :
3+ pull_request :
44 branches :
55 - coatl
6- pull_request :
6+ paths :
7+ - Formula/ignition@8.1.rb
78jobs :
89 test-bot :
910 if : github.repository == 'coatl-dev/homebrew-coatl-dev'
1011 strategy :
1112 matrix :
12- os : [macos-13, macos-latest, ubuntu-latest]
13+ os : [macos-13, ubuntu-latest]
1314 fail-fast : false
1415 runs-on : ${{ matrix.os }}
1516 steps :
2223 uses : actions/cache@v4
2324 with :
2425 path : ${{ steps.set-up-homebrew.outputs.gems-path }}
25- key : ${{ matrix .os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
26- restore-keys : ${{ matrix .os }}-rubygems-
26+ key : ${{ runner .os }}-${{ runner.arch }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
27+ restore-keys : ${{ runner .os }}-${{ runner.arch }}-rubygems-
2728
2829 - name : Install Homebrew Bundler RubyGems
2930 if : steps.cache.outputs.cache-hit != 'true'
3637 - run : brew test-bot --only-tap-syntax
3738
3839 - run : brew test-bot --only-formulae
39- if : github.event_name == 'pull_request'
Original file line number Diff line number Diff line change 1+ name : test-ignition@8.3
2+ on :
3+ pull_request :
4+ branches :
5+ - coatl
6+ paths :
7+ - Formula/ignition@8.3.rb
8+ jobs :
9+ test-bot :
10+ if : github.repository == 'coatl-dev/homebrew-coatl-dev'
11+ strategy :
12+ matrix :
13+ os : [macos-latest, ubuntu-latest]
14+ fail-fast : false
15+ runs-on : ${{ matrix.os }}
16+ steps :
17+ - name : Set up Homebrew
18+ id : set-up-homebrew
19+ uses : Homebrew/actions/setup-homebrew@master
20+
21+ - name : Cache Homebrew Bundler RubyGems
22+ id : cache
23+ uses : actions/cache@v4
24+ with :
25+ path : ${{ steps.set-up-homebrew.outputs.gems-path }}
26+ key : ${{ runner.os }}-${{ runner.arch }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
27+ restore-keys : ${{ runner.os }}-${{ runner.arch }}-rubygems-
28+
29+ - name : Install Homebrew Bundler RubyGems
30+ if : steps.cache.outputs.cache-hit != 'true'
31+ run : brew install-bundler-gems
32+
33+ - run : brew test-bot --only-cleanup-before
34+
35+ - run : brew test-bot --only-setup
36+
37+ - run : brew test-bot --only-tap-syntax
38+
39+ - run : brew test-bot --only-formulae
Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ class IgnitionAT83 < Formula
33 homepage "https://inductiveautomation.com/"
44 if OS . mac?
55 os = "macOs"
6- arch = "aarch64"
7- sha = "c7554662513dca7994d6a624a271140c58f830f56b8d33270e367a3cef372237 "
6+ arch = "aarch64-64 "
7+ sha = "d97f8f888d94cc8a6768efa4fea56849581a6af6c550b6308dd6c30984361373 "
88 else
99 os = "linux"
10- arch = "x86"
11- sha = "6a6bf34dced3a6a62434ff1090190f7319b2d0d401b1cd31f1f2e58012479548 "
10+ arch = "x86-64 "
11+ sha = "26d494aee7204b4671deb003def6551aec9e2a0fc523695e5b51a024365a3840 "
1212 end
13- url "https://files.inductiveautomation.com/release/ia/8.3.0-beta1/20250725-1612 /Ignition-#{ os } -#{ arch } -64- 8.3.0-beta1 .zip" ,
13+ url "https://files.inductiveautomation.com/release/ia/8.3.0-beta2/20250804-0931 /Ignition-#{ os } -#{ arch } -8.3.0-beta2 .zip" ,
1414 referer : "https://inductiveautomation.com/"
15- version "8.3.0-beta1 "
15+ version "8.3.0-beta2 "
1616 sha256 sha . to_s
1717 license :cannot_represent
1818
You can’t perform that action at this time.
0 commit comments