Skip to content

Commit a8424e3

Browse files
committed
cicd: remove bintutils and ncurses libs
Signed-off-by: Jack Lau <[email protected]>
1 parent ac49b27 commit a8424e3

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/review.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -152,24 +152,24 @@ jobs:
152152
run: |
153153
git clone https://github.com/OpenConverterLab/bmf.git
154154
155-
wget https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
156-
wget https://ftp.gnu.org/gnu/binutils/binutils-2.43.1.tar.bz2
155+
# wget https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
156+
# wget https://ftp.gnu.org/gnu/binutils/binutils-2.43.1.tar.bz2
157157
158-
- name: Cache ncurses build
159-
uses: actions/cache@v3
160-
with:
161-
path: opt/ncurses
162-
key: ${{ runner.os }}-ncurses-${{ hashFiles('ncurses-6.5.tar.gz') }}
163-
restore-keys: |
164-
${{ runner.os }}-ncurses-
158+
# - name: Cache ncurses build
159+
# uses: actions/cache@v3
160+
# with:
161+
# path: opt/ncurses
162+
# key: ${{ runner.os }}-ncurses-${{ hashFiles('ncurses-6.5.tar.gz') }}
163+
# restore-keys: |
164+
# ${{ runner.os }}-ncurses-
165165

166-
- name: Cache binutils build
167-
uses: actions/cache@v3
168-
with:
169-
path: opt/binutils
170-
key: ${{ runner.os }}-binutils-${{ hashFiles('binutils-2.43.1.tar.bz2') }}
171-
restore-keys: |
172-
${{ runner.os }}-binutils-
166+
# - name: Cache binutils build
167+
# uses: actions/cache@v3
168+
# with:
169+
# path: opt/binutils
170+
# key: ${{ runner.os }}-binutils-${{ hashFiles('binutils-2.43.1.tar.bz2') }}
171+
# restore-keys: |
172+
# ${{ runner.os }}-binutils-
173173

174174
# - name: compile dependencies
175175
# run: |
@@ -198,8 +198,8 @@ jobs:
198198
- name: Set up BMF if not cached
199199
run: |
200200
if [ ! -d "$(pwd)/bmf/output/" ]; then
201-
export LIBRARY_PATH=$(pwd)/opt/binutils/lib:$LIBRARY_PATH
202-
export CMAKE_PREFIX_PATH=$(pwd)/opt/binutils:$CMAKE_PREFIX_PATH
201+
# export LIBRARY_PATH=$(pwd)/opt/binutils/lib:$LIBRARY_PATH
202+
# export CMAKE_PREFIX_PATH=$(pwd)/opt/binutils:$CMAKE_PREFIX_PATH
203203
pip install setuptools
204204
(cd bmf && git checkout oc && git submodule update --init --recursive && ./build_osx.sh)
205205
else

0 commit comments

Comments
 (0)