File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,18 @@ jobs:
8484 echo "C_FLAGS=-m64" >> $GITHUB_ENV
8585 echo "CXX_FLAGS=-m64" >> $GITHUB_ENV
8686 elif [[ "${{ matrix.arch }}" == "x86" ]]; then
87+ sudo apt-get update
8788 sudo apt-get install g++-multilib
8889 echo "C_FLAGS=-m32" >> $GITHUB_ENV
8990 echo "CXX_FLAGS=-m32" >> $GITHUB_ENV
9091 elif [[ "${{ matrix.arch }}" == "arm64" ]]; then
91- sudo apt-get install g++-aarch64-linux-gnu --fix-missing
92+ sudo apt-get update
93+ sudo apt-get install g++-aarch64-linux-gnu
9294 echo "C_COMPILER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
9395 echo "CXX_COMPILER=aarch64-linux-gnu-g++" >> $GITHUB_ENV
9496 elif [[ "${{ matrix.arch }}" == "arm32" ]]; then
95- sudo apt-get install g++-arm-linux-gnueabi --fix-missing
97+ sudo apt-get update
98+ sudo apt-get install g++-arm-linux-gnueabi
9699 echo "C_COMPILER=arm-linux-gnueabi-gcc" >> $GITHUB_ENV
97100 echo "CXX_COMPILER=arm-linux-gnueabi-g++" >> $GITHUB_ENV
98101 fi
@@ -119,6 +122,10 @@ jobs:
119122 working-directory : ./build
120123 run : cmake --build . -j 2 --config Release --target package
121124
125+ - name : Show Files
126+ working-directory : ./build
127+ run : dir
128+
122129 - name : Rename file
123130 working-directory : ./build
124131 run : mv libopus.so.0.10.1 opus.so
You can’t perform that action at this time.
0 commit comments