@@ -40,7 +40,7 @@ to get started with GitHub workflows.
4040
4141The configuration file is in YAML and has the following format:
4242
43- * ` version: '2.9.3 ' ` — The MacPorts version to install.
43+ * ` version: '2.11.5 ' ` — The MacPorts version to install.
4444* ` prefix: '/opt/local' ` — The installation prefix to install MacPorts to.
4545 The default is ` /opt/local ` and only needs to be changed when
4646 preparing self-install packages for instane.
7979 - push
8080
8181jobs :
82- install-macports-on-macos-11 :
83- runs-on : macos-11
84- name : ' Install MacPorts 2.9.3 on MacOS 11 '
82+ install-macports-on-macos-15 :
83+ runs-on : macos-15
84+ name : ' Install MacPorts 2.11.5 on MacOS 15 '
8585 steps :
8686 - uses : actions/checkout@v3
8787 - uses : melusina-org/setup-macports@v1
8888 id : ' macports'
8989 with :
90- parameters : ' testsuite/run-testsuite-on-macos-11 .yaml'
90+ parameters : ' testsuite/run-testsuite-on-macos-15 .yaml'
9191 - name : ' Validate installed MacPorts version'
9292 run : >-
93- test "$(port version)" = 'Version: 2.9.3 '
93+ test "$(port version)" = 'Version: 2.11.5 '
9494 - name : ' Validate transmitted MacPorts prefix'
9595 run : >-
9696 test "${{ steps.macports.outputs.prefix }}" = '/opt/local'
9797 - name : ' Validate transmitted MacPorts version'
9898 run : >-
99- test "${{ steps.macports.outputs.version }}" = '2.9.3 '
99+ test "${{ steps.macports.outputs.version }}" = '2.11.5 '
100100
101- install-macports-on-macos-12 :
102- runs-on : macos-12
103- name : ' Install MacPorts 2.9.3 on MacOS 12 '
101+ install-macports-on-macos-26 :
102+ runs-on : macos-26
103+ name : ' Install MacPorts 2.11.5 on MacOS 26 '
104104 steps :
105105 - uses : actions/checkout@v3
106106 - name : ' Run testsuite'
107107 run : development/testsuite
108108 - uses : melusina-org/setup-macports@v1
109109 with :
110- parameters : ' testsuite/run-testsuite-on-macos-12 .yaml'
110+ parameters : ' testsuite/run-testsuite-on-macos-26 .yaml'
111111 - run : port version
112112` ` `
113113
114114
115115## Example parameters
116116
117117` ` ` yaml
118- version : ' 2.9.3 '
118+ version : ' 2.11.5 '
119119prefix : ' /opt/local'
120120variants :
121121 select :
0 commit comments