Add eventlog parsing logic for GPU device CC Mode event types #1376
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: release | |
| on: | |
| push: | |
| branches: | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| release: | |
| strategy: | |
| matrix: | |
| # We can cross-compile from Linux to macOS and Windows. See .goreleaser.yaml | |
| # So running just on ubuntu is sufficient. | |
| go-version: [1.21.x] | |
| os: [ubuntu-latest] | |
| name: Release (${{ matrix.os}}, Go ${{ matrix.go-version }}) | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| cache: true | |
| - shell: bash | |
| run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
| - id: cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: dist/${{ matrix.os }} | |
| key: ${{ matrix.go }}-${{ env.sha_short }} | |
| - name: Install Linux packages | |
| run: sudo apt-get -y install libssl-dev | |
| if: runner.os == 'Linux' | |
| - name: Build all modules | |
| run: go build -v ./... ./cmd/... ./launcher/... ./verifier/... | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v3 | |
| if: success() && startsWith(github.ref, 'refs/tags/') && steps.cache.outputs.cache-hit != 'true' | |
| with: | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |