Update TPIP report #64
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
name: Build | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
go: [1.22.x] | |
name: '${{ matrix.platform }} | ${{ matrix.go }}' | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: | | |
make build/vidx2pidx | |
make OS=windows ARCH=amd64 build/vidx2pidx.exe | |
make clean | |
make OS=darwin ARCH=amd64 build/vidx2pidx | |
make clean | |
make OS=windows ARCH=arm64 build/vidx2pidx.exe | |
make clean | |
make OS=darwin ARCH=arm64 build/vidx2pidx | |
make clean | |
make OS=linux ARCH=arm64 build/vidx2pidx |