pdbg init: Add additional debug traces in pdbg target initialization #245
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: sudo apt update && sudo apt-get install -qq | |
| make autoconf automake libtool | |
| gcc-arm-linux-gnueabi libc-dev-armel-cross | |
| gcc-powerpc64le-linux-gnu libc-dev-ppc64el-cross | |
| git device-tree-compiler | |
| - uses: actions/checkout@v2 | |
| - name: Bootstrap | |
| run: ./bootstrap.sh | |
| - name: arm32 | |
| run: ./configure --host=arm-linux-gnueabi && make && make -s clean | |
| - name: ppc64le | |
| run: ./configure --host=powerpc64le-linux-gnu && make && make -s clean | |
| - name: amd64 | |
| run: ./configure --host=x86-64-linux-gnu && make && make -s clean |