File tree 1 file changed +32
-2
lines changed
1 file changed +32
-2
lines changed Original file line number Diff line number Diff line change 78
78
run : cd build && make
79
79
- name : tests
80
80
run : cd build && ctest --output-on-failure
81
- macos-latest-build :
82
- runs-on : macos-latest
81
+ macos-14-build :
82
+ runs-on : macos-14
83
+ steps :
84
+ - name : Checkout repository code
85
+ uses : actions/checkout@v2
86
+ - name : Checkout submodules
87
+ run : git submodule update --init --recursive
88
+ - name : install dependencies
89
+ run : brew install --force --overwrite cmake && brew install --force --overwrite glpk && brew tap coin-or-tools/coinor && brew install --force --overwrite coin-or-tools/coinor/cbc
90
+ - name : cmake
91
+ run : mkdir build && cd build && cmake ..
92
+ - name : make
93
+ run : cd build && make
94
+ - name : tests
95
+ run : cd build && ctest --output-on-failure
96
+ macos-13-build :
97
+ runs-on : macos-13
98
+ steps :
99
+ - name : Checkout repository code
100
+ uses : actions/checkout@v2
101
+ - name : Checkout submodules
102
+ run : git submodule update --init --recursive
103
+ - name : install dependencies
104
+ run : brew install --force --overwrite cmake && brew install --force --overwrite glpk && brew tap coin-or-tools/coinor && brew install --force --overwrite coin-or-tools/coinor/cbc
105
+ - name : cmake
106
+ run : mkdir build && cd build && cmake ..
107
+ - name : make
108
+ run : cd build && make
109
+ - name : tests
110
+ run : cd build && ctest --output-on-failure
111
+ macos-12-build :
112
+ runs-on : macos-12
83
113
steps :
84
114
- name : Checkout repository code
85
115
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments