diff options
author | gatecat <gatecat@ds0.me> | 2021-05-15 15:49:02 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-05-15 15:53:25 +0100 |
commit | 6cef569155b5934893109d4ae509c94bdd1dc16a (patch) | |
tree | fe4faa1e789d79c092420e7632f5a9345bcb6735 /.github/workflows/mistral_ci.yml | |
parent | 3bb94192d54bfcdbcd58dacd298aa6ff6d9b2bd2 (diff) | |
download | nextpnr-6cef569155b5934893109d4ae509c94bdd1dc16a.tar.gz nextpnr-6cef569155b5934893109d4ae509c94bdd1dc16a.tar.bz2 nextpnr-6cef569155b5934893109d4ae509c94bdd1dc16a.zip |
ci: Use GH only for Mistral and fpga-interchange
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to '.github/workflows/mistral_ci.yml')
-rw-r--r-- | .github/workflows/mistral_ci.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/mistral_ci.yml b/.github/workflows/mistral_ci.yml new file mode 100644 index 00000000..877e374d --- /dev/null +++ b/.github/workflows/mistral_ci.yml @@ -0,0 +1,33 @@ +name: Mistral CI tests + +on: [push, pull_request] + +jobs: + Build-nextpnr: + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v2 + with: + submodules: recursive + + - uses: actions/setup-python@v2 + + - name: Install + run: | + sudo apt-get update + sudo apt-get install git make cmake libboost-all-dev python3-dev libeigen3-dev tcl-dev lzma-dev clang bison flex swig + + - name: ccache + uses: hendrikmuhs/ccache-action@v1 + + - name: Execute build nextpnr + env: + MISTRAL_PATH: ${{ github.workspace }}/deps/mistral + MISTRAL_REVISION: 7d4e6d2cca1ec05de3be0c9fef6acaed8089d329 + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + source ./.github/ci/build_mistral.sh + get_dependencies + build_nextpnr + run_archcheck |