Skip to content

Commit cea97fa

Browse files
authored
Merge pull request #713 from jiaoshuntian/remove_macos
remove macos in actions
2 parents ce2a5c3 + 2a4138e commit cea97fa

File tree

4 files changed

+4
-53
lines changed

4 files changed

+4
-53
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
14+
os: [ubuntu-latest]
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -34,15 +34,5 @@ jobs:
3434
--with-openssl --with-libedit-preferred --with-uuid=e2fs \
3535
--with-ossp-uuid --with-libxml --with-libxslt --with-perl \
3636
--with-icu
37-
- name: configure - macos
38-
if: ${{ matrix.os == 'macos-latest' }}
39-
run: |
40-
brew install icu4c
41-
export PKG_CONFIG_PATH=$(brew --prefix)/opt/icu4c/lib/pkgconfig
42-
./configure \
43-
--enable-cassert --enable-debug --enable-rpath --with-tcl \
44-
--with-python --with-pam --with-ldap --with-libedit-preferred \
45-
--with-uuid=e2fs --with-libxml --with-libxslt --with-perl \
46-
--with-icu
4737
- name: compile
4838
run: make

.github/workflows/oracle_pg_regression.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
14+
os: [ubuntu-latest]
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -38,19 +38,6 @@ jobs:
3838
--with-openssl --with-libedit-preferred --with-uuid=e2fs \
3939
--with-ossp-uuid --with-libxml --with-libxslt --with-perl \
4040
--with-icu
41-
- name: configure - macos
42-
if: ${{ matrix.os == 'macos-latest' }}
43-
run: |
44-
brew install icu4c
45-
export PKG_CONFIG_PATH=$(brew --prefix)/opt/icu4c/lib/pkgconfig
46-
curl -L -o cpanm http://cpanmin.us && chmod +x cpanm && \
47-
./cpanm --sudo IPC::Run && \
48-
./configure \
49-
--prefix=$PWD/inst \
50-
--enable-cassert --enable-debug --enable-tap-tests --enable-rpath \
51-
--with-tcl --with-python --with-pam --with-ldap \
52-
--with-libedit-preferred --with-uuid=e2fs --with-libxml \
53-
--with-libxslt --with-perl --with-icu
5441
- name: compile
5542
run: make && make install
5643

.github/workflows/oracle_regression.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
14+
os: [ubuntu-latest]
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -38,19 +38,6 @@ jobs:
3838
--with-openssl --with-libedit-preferred --with-uuid=e2fs \
3939
--with-ossp-uuid --with-libxml --with-libxslt --with-perl \
4040
--with-icu
41-
- name: configure - macos
42-
if: ${{ matrix.os == 'macos-latest' }}
43-
run: |
44-
brew install icu4c
45-
export PKG_CONFIG_PATH=$(brew --prefix)/opt/icu4c/lib/pkgconfig
46-
curl -L -o cpanm http://cpanmin.us && chmod +x cpanm && \
47-
./cpanm --sudo IPC::Run && \
48-
./configure \
49-
--prefix=$PWD/inst \
50-
--enable-cassert --enable-debug --enable-tap-tests --enable-rpath \
51-
--with-tcl --with-python --with-pam --with-ldap \
52-
--with-libedit-preferred --with-uuid=e2fs --with-libxml \
53-
--with-libxslt --with-perl --with-icu
5441
- name: compile
5542
run: make && make install
5643

.github/workflows/pg_regression.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
14+
os: [ubuntu-latest]
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -38,19 +38,6 @@ jobs:
3838
--with-openssl --with-libedit-preferred --with-uuid=e2fs \
3939
--with-ossp-uuid --with-libxml --with-libxslt --with-perl \
4040
--with-icu
41-
- name: configure - macos
42-
if: ${{ matrix.os == 'macos-latest' }}
43-
run: |
44-
brew install icu4c
45-
export PKG_CONFIG_PATH=$(brew --prefix)/opt/icu4c/lib/pkgconfig
46-
curl -L -o cpanm http://cpanmin.us && chmod +x cpanm && \
47-
./cpanm --sudo IPC::Run && \
48-
./configure \
49-
--prefix=$PWD/inst \
50-
--enable-cassert --enable-debug --enable-tap-tests --enable-rpath \
51-
--with-tcl --with-python --with-pam --with-ldap \
52-
--with-libedit-preferred --with-uuid=e2fs --with-libxml \
53-
--with-libxslt --with-perl --with-icu
5441
- name: compile
5542
run: make && make install
5643

0 commit comments

Comments
 (0)