[pull] trunk from spiceai:trunk #1549
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: Makefile Targets | |
| on: | |
| pull_request: | |
| branches: | |
| - trunk | |
| - release-* | |
| - feature-* | |
| paths-ignore: | |
| - '**/*.md' | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'Makefile' | |
| - 'CONTRIBUTING.md' | |
| - 'SECURITY.md' | |
| - 'LICENSE' | |
| - '.github/**' | |
| - 'version.txt' | |
| - '.schema/**' | |
| - '.vscode/**' | |
| - 'deploy/**' | |
| - 'install/**' | |
| - 'media/**' | |
| - 'monitoring/**' | |
| - 'acknowledgements.md' | |
| - 'Dockerfile*' | |
| workflow_dispatch: | |
| concurrency: | |
| # Allow only one workflow per any non-trunk branch. | |
| group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'trunk' && github.sha || 'any-sha' }} | |
| cancel-in-progress: true | |
| jobs: | |
| make_install: | |
| name: make install* | |
| runs-on: spiceai-runners | |
| env: | |
| GOVER: 1.23.4 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVER }} | |
| cache: false | |
| - name: Set up Rust | |
| uses: ./.github/actions/setup-rust | |
| with: | |
| os: 'linux' | |
| - name: Set up make | |
| uses: ./.github/actions/setup-make | |
| - name: Set up cc | |
| uses: ./.github/actions/setup-cc | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: make install | |
| run: | | |
| make install | |
| - name: make install-with-models | |
| run: | | |
| make install-with-models | |
| - name: make install-with-odbc | |
| run: | | |
| make install-with-odbc | |
| - name: make install-cli | |
| run: | | |
| make install-cli | |
| - name: make install-runtime | |
| run: | | |
| make install-runtime |