WINTERMUTE: Add a DCP extractor script #46
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
# Must be explicit for proper pipefail support | |
shell: bash | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: sudo apt install libboost-all-dev | |
- run: ./configure | |
- run: make -j $(nproc) | |
- run: echo "🍏 This job's status is ${{ job.status }}." |