summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 12e5b62..f2fbefc 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,7 +38,7 @@ jobs:
38 done 38 done
39 sudo cp -r extract/* / 39 sudo cp -r extract/* /
40 sudo ldconfig 40 sudo ldconfig
41 - uses: actions/checkout@v2 41 - uses: actions/checkout@v3
42 - name: autogen 42 - name: autogen
43 run: ./autogen.sh PKG_CONFIG_PATH=/usr/local/lib/pkgconfig LDFLAGS="-Wl,-rpath=/usr/local/lib" 43 run: ./autogen.sh PKG_CONFIG_PATH=/usr/local/lib/pkgconfig LDFLAGS="-Wl,-rpath=/usr/local/lib"
44 - name: make 44 - name: make
@@ -51,7 +51,7 @@ jobs:
51 DESTDIR=`pwd`/dest make install 51 DESTDIR=`pwd`/dest make install
52 tar -C dest -cf libirecovery.tar lib usr 52 tar -C dest -cf libirecovery.tar lib usr
53 - name: publish artifact 53 - name: publish artifact
54 uses: actions/upload-artifact@v2 54 uses: actions/upload-artifact@v3
55 with: 55 with:
56 name: libirecovery-latest_${{env.target_triplet}} 56 name: libirecovery-latest_${{env.target_triplet}}
57 path: libirecovery.tar 57 path: libirecovery.tar
@@ -87,7 +87,7 @@ jobs:
87 tar -C extract -xvf $I 87 tar -C extract -xvf $I
88 done 88 done
89 sudo cp -r extract/* / 89 sudo cp -r extract/* /
90 - uses: actions/checkout@v2 90 - uses: actions/checkout@v3
91 - name: autogen 91 - name: autogen
92 run: | 92 run: |
93 SDKDIR=`xcrun --sdk macosx --show-sdk-path` 93 SDKDIR=`xcrun --sdk macosx --show-sdk-path`
@@ -111,7 +111,7 @@ jobs:
111 DESTDIR=`pwd`/dest make install 111 DESTDIR=`pwd`/dest make install
112 tar -C dest -cf libirecovery.tar usr 112 tar -C dest -cf libirecovery.tar usr
113 - name: publish artifact 113 - name: publish artifact
114 uses: actions/upload-artifact@v2 114 uses: actions/upload-artifact@v3
115 with: 115 with:
116 name: libirecovery-latest_macOS 116 name: libirecovery-latest_macOS
117 path: libirecovery.tar 117 path: libirecovery.tar
@@ -167,7 +167,7 @@ jobs:
167 tar -C extract -xvf $I 167 tar -C extract -xvf $I
168 done 168 done
169 cp -r extract/* / 169 cp -r extract/* /
170 - uses: actions/checkout@v2 170 - uses: actions/checkout@v3
171 - name: autogen 171 - name: autogen
172 run: ./autogen.sh CC=gcc CXX=g++ 172 run: ./autogen.sh CC=gcc CXX=g++
173 - name: make 173 - name: make
@@ -180,7 +180,7 @@ jobs:
180 DESTDIR=`pwd`/dest make install 180 DESTDIR=`pwd`/dest make install
181 tar -C dest -cf libirecovery.tar ${{ env.dest }} 181 tar -C dest -cf libirecovery.tar ${{ env.dest }}
182 - name: publish artifact 182 - name: publish artifact
183 uses: actions/upload-artifact@v2 183 uses: actions/upload-artifact@v3
184 with: 184 with:
185 name: libirecovery-latest_${{ matrix.arch }}-${{ env.dest }} 185 name: libirecovery-latest_${{ matrix.arch }}-${{ env.dest }}
186 path: libirecovery.tar 186 path: libirecovery.tar