Linux Debug #1
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
on: | |
workflow_dispatch: | |
inputs: | |
runner: | |
description: "Type of runner to use/architecture to build for." | |
type: choice | |
options: | |
- toolchains-ubuntu-22.04-x86 | |
- toolchains-ubuntu-22.04-arm | |
name: Linux Debug | |
jobs: | |
debug: | |
name: debug ${{ inputs.runner }} | |
runs-on: ${{ inputs.runner }} | |
permissions: | |
contents: write | |
steps: | |
- name: Debug | |
run: ldd --version |