flydra-feature-detector: simplify #452
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: Build FMF CLI app | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| fmf-cli-app-ubuntu-22-04: | |
| runs-on: ubuntu-22.04 | |
| defaults: | |
| run: | |
| working-directory: media-utils/fmf/fmf-cli | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build FMF CLI app | |
| run: | | |
| cargo build --release | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: fmf-ubuntu | |
| path: ${{ github.workspace }}/target/release/fmf | |
| fmf-cli-app-windows: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| working-directory: media-utils/fmf/fmf-cli | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build FMF CLI app | |
| run: | | |
| cargo build --release | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: fmf-windows | |
| path: ${{ github.workspace }}/target/release/fmf.exe | |
| fmf-cli-app-macos: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: media-utils/fmf/fmf-cli | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build FMF CLI app | |
| run: | | |
| cargo build --release | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: fmf-mac | |
| path: ${{ github.workspace }}/target/release/fmf |