feat: add default interface handling for debug sessions in Evaluator #3267
Workflow file for this run
This file contains hidden or 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: Minimal Build | |
| on: [push] | |
| jobs: | |
| Jammy: | |
| name: Ubuntu 24.04 | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: sudo $GITHUB_WORKSPACE/tools/install_dependencies/install-ubuntu-24.04-minimal.sh | |
| - name: Get package version | |
| uses: myrotvorets/info-from-package-json-action@2.0.1 | |
| id: json_version | |
| - name: Update version | |
| run: just update_version | |
| - name: Configure | |
| run: just config cmake -DCMAKE_BUILD_TYPE=Release -DMINIMAL_BUILD=ON -G "Ninja" . | |
| - name: Build | |
| run: just build | |
| - name: Package | |
| run: just package | |
| - name: Copy artifacts | |
| run: mkdir artifacts && mv nelson-*.deb artifacts | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: nelson-github-action-artifacts-minimal-linux-ubuntu-24-04-amd64-${{steps.json_version.outputs.packageVersion}}.${{ github.sha }} | |
| path: artifacts/ |