File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112112 sudo debootstrap --arch=$(dpkg --print-architecture) focal sysroot-focal http://archive.ubuntu.com/ubuntu
113113 fi
114114 sudo chroot sysroot-focal apt-get update
115- sudo chroot sysroot-focal apt-get install -y build-essential git wget curl sudo unzip zip autoconf libfreetype6-dev libcups2-dev libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev libasound2-dev libffi-dev file binutils libfontconfig-dev
115+ sudo chroot sysroot-focal apt-get install -y build-essential git wget curl sudo unzip zip autoconf libfreetype6-dev libcups2-dev libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev libasound2-dev libffi-dev file binutils libfontconfig-dev libc6-dev libpthread-stubs0-dev
116116 # If we really need gcc-10, we can get it from this PPA:
117117 sudo chroot sysroot-focal apt-get install -y software-properties-common
118118 sudo chroot sysroot-focal sudo add-apt-repository ppa:ubuntu-toolchain-r/test
@@ -121,6 +121,10 @@ jobs:
121121 echo $PWD
122122 ls -F
123123
124+ - name : ' Check pthread in sysroot'
125+ run : |
126+ find sysroot-focal -name 'libpthread.[sa]*' -ls
127+
124128 - name : ' Get the BootJDK'
125129 id : bootjdk
126130 uses : ./.github/actions/get-bootjdk
@@ -181,6 +185,10 @@ jobs:
181185 echo PWD=$PWD &&
182186 exit 1)
183187
188+ - name : ' Check build config'
189+ run : |
190+ grep -E 'LDFLAGS|LIBS' build/*/spec.gmk build/*/bnuildjdk-spec.gmk || true
191+
184192 - name : ' Build'
185193 id : build
186194 uses : ./.github/actions/do-build
You can’t perform that action at this time.
0 commit comments