ci: update linux build github workflow for openocd #7
Workflow file for this run
This file contains 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
on: [push, pull_request] | |
name: Linux Build | |
jobs: | |
# 32-bit, clang | |
build32: | |
runs-on: ubuntu-latest | |
env: | |
CFLAGS: -m32 | |
CC: clang | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install required packages (apt-get) | |
run: | | |
sudo apt-get update | |
sudo apt-get install clang gcc-multilib | |
sudo apt-get install libftdi1-2 libftdi1-dev | |
- run: ./bootstrap | |
- run: ./configure --enable-remote-bitbang --enable-jtag_vpi --disable-target64 --enable-jlink --enable-ftdi --disable-werror | |
- run: make -j`nproc` | |
- run: file src/openocd | grep 32-bit | |
- run: src/openocd --version | |
# 64-bit, gcc | |
build64: | |
runs-on: ubuntu-latest | |
env: | |
CFLAGS: -m64 | |
CC: gcc | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install required packages (apt-get) | |
run: | | |
sudo apt-get update | |
sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev | |
sudo apt-get install libftdi1-2 libftdi1-dev | |
- run: ./bootstrap | |
- run: ./configure --enable-remote-bitbang --enable-jtag_vpi --enable-ftdi-oscan1 --enable-jlink --enable-ftdi --disable-werror | |
- run: make -j`nproc` | |
- run: file src/openocd | grep 64-bit | |
- run: src/openocd --version |