Skip to content

Commit b775aed

Browse files
authored
Update macOS version and GCC in workflow
1 parent bed76e6 commit b775aed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/osx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: macos-latest
12+
runs-on: macos-13
1313

1414

1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: tag version date
1818
run: /bin/sh ./tag.sh
1919
- name: Install packages
20-
run: brew install gcc@12 autoconf automake libtool binutils ;
20+
run: brew install gcc@13 autoconf automake libtool binutils ;
2121
- name: autoreconf
2222
run: autoreconf -vfi
2323
- name: Prepare install folder
2424
run: mkdir usr && mkdir usr/local
2525
- name: configure
26-
run: ./configure --prefix=$PWD/usr/local/ AR='gcc-ar-12' NM='gcc-nm-12' RANLIB='gcc-ranlib-12' CXX='g++-12' CC='gcc-12' || cat config.log
26+
run: ./configure --prefix=$PWD/usr/local/ AR='gcc-ar-13' NM='gcc-nm-13' RANLIB='gcc-ranlib-13' CXX='g++-13' CC='gcc-13' || cat config.log
2727
- name: make lib
2828
run: cd ddd ; make -j ; cd ..
2929
- name: make demo

0 commit comments

Comments
 (0)