/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/snap.yml
95 строк
3 KB
dependabot[bot]
ci: bump the ga-dependencies group with 3 updates
06 мар 2026, 02:58
06 мар 2026, 02:58
8cc6b60
Код
Авторство
О чём код?
# Copyright 2023-2026, Intel Corporation # SPDX-License-Identifier: BSD-3-Clause name: Snap permissions: read-all on: workflow_dispatch: inputs: version: description: 'ISPC release version (just number without v, e.g., 1.20.0' required: true type: string publish: description: 'Turn on publishing to Snap Store for specified archs' required: true default: 'none' type: choice options: - 'none' - 'both' - 'amd64' - 'aarch64' channel: description: 'Choose the channel to publish to' required: true default: 'stable' type: choice options: - 'stable' - 'candidate' - 'beta' - 'edge' jobs: snap: # Only run in the main ispc/ispc repo where the secret is available for publishing. if: github.repository == 'ispc/ispc' runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-22.04-arm' || 'ubuntu-latest' }} strategy: fail-fast: false matrix: arch: ['amd64', 'aarch64'] concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.arch }} cancel-in-progress: true env: ISPC_VERSION: ${{ inputs.version }} ISPC_ARCHIVE: "https://github.com/ispc/ispc/releases/download/v${{ inputs.version }}/ispc-v${{ inputs.version }}-linux${{ matrix.arch == 'aarch64' && '.aarch64' || '' }}.tar.gz" ARTIFACT_NAME: ispc_snap_${{ matrix.arch }} steps: - name: Check out Git repository uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 submodules: false - name: Prepare snap.yml run: | sed "s|@ISPC_VERSION@|$ISPC_VERSION|g" -i snap/snapcraft.yaml sed "s|@ISPC_ARCHIVE@|$ISPC_ARCHIVE|g" -i snap/snapcraft.yaml { echo "ISPC_VERSION=$ISPC_VERSION" echo "ISPC_ARCHIVE=$ISPC_ARCHIVE" echo "channel is ${{ inputs.channel }}" echo "Configured snapcraft.yaml:" echo "--------------------------" cat snap/snapcraft.yaml } >> "$GITHUB_STEP_SUMMARY" # Set up snapcraft and call it to build snap. # The output snap is ${{ steps.build.outputs.snap }}. - name: Install Snapcraft uses: snapcore/action-build@3bdaa03e1ba6bf59a65f84a751d943d549a54e79 # v1.3.0 id: build # To publish manually run: # snapcraft push --channel=latest/stable ispc*.snap - name: Publish snap if: ${{ inputs.publish != 'none' && matrix.arch == inputs.publish || inputs.publish == 'both' }} uses: snapcore/action-publish@214b86e5ca036ead1668c79afb81e550e6c54d40 # v1.2.0 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }} with: snap: ${{ steps.build.outputs.snap }} release: ${{ inputs.channel }} - name: Upload snap package uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ steps.build.outputs.snap }}