aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/snapshot.yml
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2020-12-14 12:40:08 -0800
committerGitHub <noreply@github.com>2020-12-14 12:40:08 -0800
commitb8620764c09cbb05d8179fd5f520110fee114417 (patch)
tree8c3845e6c166dc539f37e30e0c6073f7b00635e9 /.github/workflows/snapshot.yml
parentf72e5bb0d82e5feb05efbcbb07c326f28d3e3cdf (diff)
downloadriscv-openocd-b8620764c09cbb05d8179fd5f520110fee114417.zip
riscv-openocd-b8620764c09cbb05d8179fd5f520110fee114417.tar.gz
riscv-openocd-b8620764c09cbb05d8179fd5f520110fee114417.tar.bz2
Add `riscv info` command. (#558)
Add `riscv info` command. Final output is "TCL format" and looks like this: ``` hart.xlen 64 hart.trigger_count 4 dm.abits 6 dm.progbufsize 2 dm.sbversion 0 dm.sbasize 0 dm.sbaccess128 0 dm.sbaccess64 0 dm.sbaccess32 0 dm.sbaccess16 0 dm.sbaccess8 0 ``` * Add `riscv info` command. This command displays some basic information that OpenOCD has detected about the target. The output is displayed in YAML so it can easily be parsed. Example of current output: ``` Hart: XLEN: 32 trigger count: 4 Debug Module: abits: 6 progbufsize: 2 sbversion: 0 sbasize: 0 sbaccess128: 0 sbaccess64: 0 sbaccess32: 0 sbaccess16: 0 sbaccess8: 0 ``` Change-Id: If920c083ff6ec9f482c50f913cd8ceaa62461217 Signed-off-by: Tim Newsome <tim@sifive.com> * Disable workflow inherited from upstream. Change-Id: Ifc5ed1b4f5ec2278b8bcf3279c9fd462e469fefa Signed-off-by: Tim Newsome <tim@sifive.com> * Switch from YAML to TCL "set array" input format. Change-Id: I3833210e5bf6d7cffc9934c04ec5201ae7732ad8 Signed-off-by: Tim Newsome <tim@sifive.com> * Remove indent in `riscv info` output. That was getting a little too cute, and probably more confusing than helpful. Change-Id: Ie51416f53ab4b69294962f0565767d370db82867 Signed-off-by: Tim Newsome <tim@sifive.com>
Diffstat (limited to '.github/workflows/snapshot.yml')
-rw-r--r--.github/workflows/snapshot.yml92
1 files changed, 0 insertions, 92 deletions
diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml
deleted file mode 100644
index 2b73f9c..0000000
--- a/.github/workflows/snapshot.yml
+++ /dev/null
@@ -1,92 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-or-later
-
-# Copyright (C) 2020 by Tarek BOUCHKATI <tarek.bouchkati@gmail.com>
-
-on: push
-
-name: OpenOCD Snapshot
-
-jobs:
- package:
- runs-on: [ubuntu-18.04]
- env:
- DL_DIR: ../downloads
- BUILD_DIR: ../build
- steps:
- - name: Install needed packages
- run: sudo apt-get install autotools-dev autoconf automake libtool pkg-config cmake texinfo texlive g++-mingw-w64-i686
- - uses: actions/checkout@v1
- - run: ./bootstrap
- - name: Prepare libusb1
- env:
- LIBUSB1_VER: 1.0.23
- run: |
- mkdir -p $DL_DIR && cd $DL_DIR
- wget "https://github.com/libusb/libusb/releases/download/v${LIBUSB1_VER}/libusb-${LIBUSB1_VER}.tar.bz2"
- tar -xjf libusb-${LIBUSB1_VER}.tar.bz2
- echo "::set-env name=LIBUSB1_SRC::$PWD/libusb-${LIBUSB1_VER}"
- - name: Prepare hidapi
- env:
- HIDAPI_VER: 0.9.0
- run: |
- mkdir -p $DL_DIR && cd $DL_DIR
- wget "https://github.com/libusb/hidapi/archive/hidapi-${HIDAPI_VER}.tar.gz"
- tar -xzf hidapi-${HIDAPI_VER}.tar.gz
- cd hidapi-hidapi-${HIDAPI_VER}
- ./bootstrap
- echo "::set-env name=HIDAPI_SRC::$PWD"
- - name: Prepare libftdi
- env:
- LIBFTDI_VER: 1.4
- run: |
- mkdir -p $DL_DIR && cd $DL_DIR
- wget "http://www.intra2net.com/en/developer/libftdi/download/libftdi1-${LIBFTDI_VER}.tar.bz2"
- tar -xjf libftdi1-${LIBFTDI_VER}.tar.bz2
- echo "::set-env name=LIBFTDI_SRC::$PWD/libftdi1-${LIBFTDI_VER}"
- - name: Package OpenOCD for windows
- env:
- MAKE_JOBS: 2
- HOST: i686-w64-mingw32
- LIBUSB1_CONFIG: --enable-shared --enable-static
- HIDAPI_CONFIG: --enable-shared --disable-static --disable-testgui
- LIBFTDI_CONFIG: "-DCMAKE_TOOLCHAIN_FILE='${{ env.LIBFTDI_SRC }}/cmake/Toolchain-i686-w64-mingw32.cmake' -DBUILD_TESTS:BOOL=off -DFTDIPP:BOOL=off -DPYTHON_BINDINGS:BOOL=off -DEXAMPLES:BOOL=off -DDOCUMENTATION:BOOL=off -DFTDI_EEPROM:BOOL=off"
- run: |
- # set snapshot tag
- OPENOCD_TAG="`git tag --points-at HEAD`"
- [ -z $OPENOCD_TAG ] && OPENOCD_TAG="`git rev-parse --short HEAD`"
- # set env and call cross-build.sh
- export OPENOCD_TAG=$OPENOCD_TAG
- export OPENOCD_SRC=$PWD
- export OPENOCD_CONFIG=""
- mkdir -p $BUILD_DIR && cd $BUILD_DIR
- bash $OPENOCD_SRC/contrib/cross-build.sh $HOST
- # add missing dlls
- cd $HOST-root/usr
- cp `$HOST-gcc --print-file-name=libwinpthread-1.dll` ./bin/
- cp `$HOST-gcc --print-file-name=libgcc_s_sjlj-1.dll` ./bin/
- # prepare the artifact
- ARTIFACT="openocd-${OPENOCD_TAG}-${HOST}.tar.gz"
- tar -czf $ARTIFACT *
- echo "::set-env name=ARTIFACT_NAME::$ARTIFACT"
- echo "::set-env name=ARTIFACT_PATH::$PWD/$ARTIFACT"
- - name: Publish OpenOCD packaged for windows
- uses: actions/upload-artifact@v1
- with:
- name: ${{ env.ARTIFACT_NAME }}
- path: ${{ env.ARTIFACT_PATH }}
- - name: Get the upload URL for a release
- id: get_release
- if: startsWith(github.ref, 'refs/tags/')
- uses: bruceadams/get-release@v1.2.0
- env:
- GITHUB_TOKEN: ${{ github.token }}
- - name: Release OpenOCD packaged for windows
- if: startsWith(github.ref, 'refs/tags/')
- uses: actions/upload-release-asset@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- upload_url: ${{ steps.get_release.outputs.upload_url }}
- asset_path: ${{ env.ARTIFACT_PATH }}
- asset_name: ${{ env.ARTIFACT_NAME }}
- asset_content_type: application/gzip