aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2021-12-13 13:24:56 -0800
committerTim Newsome <tim@sifive.com>2021-12-13 13:25:09 -0800
commit8599254e29bb3133ec72234fe63dbfd2bf65e75f (patch)
tree3752926fb3dc62c6b251ffcdda31893f2bad6988 /.github
parentcb4876d80cbeaa70bba326a9411c875b48d314e4 (diff)
downloadriscv-openocd-8599254e29bb3133ec72234fe63dbfd2bf65e75f.zip
riscv-openocd-8599254e29bb3133ec72234fe63dbfd2bf65e75f.tar.gz
riscv-openocd-8599254e29bb3133ec72234fe63dbfd2bf65e75f.tar.bz2
--enable-ftdi-oscan1 in Linux build.
Change-Id: I531cd283a1020d94eaeee36e81140c8c4801c69e Signed-off-by: Tim Newsome <tim@sifive.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux-build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml
index 12d07e9..33eb470 100644
--- a/.github/workflows/linux-build.yml
+++ b/.github/workflows/linux-build.yml
@@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- run: sudo apt-get install clang gcc-multilib
- run: ./bootstrap
- - run: ./configure --enable-remote-bitbang --enable-jtag_vpi --disable-target64
+ - run: ./configure --enable-remote-bitbang --enable-jtag_vpi --disable-target64 --enable-ftdi-oscan1
- run: make
- run: file src/openocd | grep 32-bit
@@ -29,6 +29,6 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- run: ./bootstrap
- - run: ./configure --enable-remote-bitbang --enable-jtag_vpi
+ - run: ./configure --enable-remote-bitbang --enable-jtag_vpi --enable-ftdi-oscan1
- run: make
- run: file src/openocd | grep 64-bit