Add v2 tpm nonce support #1021
Workflow file for this run
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
# | |
# Copyright 2020 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
# use this file except in compliance with the License. You may obtain a copy of | |
# the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | |
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | |
# License for the specific language governing permissions and limitations under | |
# the License. | |
# | |
name: CI | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
# TODO: Get this working on windows-latest | |
os: [macos-latest, ubuntu-latest] | |
architecture: [x32, x64] | |
exclude: | |
- os: macos-latest | |
architecture: x32 | |
name: Generate/Build/Test (${{ matrix.os }}, ${{ matrix.architecture }}, Go ${{ matrix.go-version }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: "3.20.1" | |
- name: Install protoc-gen-go | |
run: go install google.golang.org/protobuf/cmd/[email protected] | |
- name: Check Protobuf Generation | |
run: | | |
go generate ./... ./cmd/... ./launcher/... | |
git diff -G'^[^/]' --exit-code | |
- name: Install Linux 64-bit packages | |
run: sudo apt-get -y install libssl-dev | |
if: runner.os == 'Linux' && matrix.architecture == 'x64' | |
- name: Install Linux 32-bit packages | |
run: sudo dpkg --add-architecture i386; sudo apt-get update; sudo apt-get -y install libssl-dev:i386 libgcc-s1:i386 gcc-multilib | |
if: runner.os == 'Linux' && matrix.architecture == 'x32' | |
- name: Install Mac packages | |
run: brew install openssl | |
if: runner.os == 'macOS' | |
- name: Install Windows packages | |
run: choco install openssl | |
if: runner.os == 'Windows' | |
- name: Build all modules | |
run: go build -v ./... ./cmd/... ./launcher/... | |
- name: Test all modules | |
run: go test -v ./... ./cmd/... ./launcher/... | |
lint: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
os: [ubuntu-latest] | |
dir: ["./", "./cmd", "./launcher"] | |
name: Lint ${{ matrix.dir }} (${{ matrix.os }}, Go ${{ matrix.go-version }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: latest | |
working-directory: ${{ matrix.dir }} | |
args: > | |
-D errcheck | |
-E stylecheck | |
-E goimports | |
-E misspell | |
-E revive | |
-E gofmt | |
-E goimports | |
--exclude-use-default=false | |
--max-same-issues=0 | |
--max-issues-per-linter=0 | |
--timeout 2m | |
lintc: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
os: [ubuntu-latest] | |
name: Lint CGO (${{ matrix.os }}, Go ${{ matrix.go-version }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install Linux packages | |
run: sudo apt-get -y install libssl-dev | |
- name: Check for CGO Warnings (gcc) | |
run: CGO_CFLAGS=-Werror CC=gcc go build ./... | |
- name: Check for CGO Warnings (clang) | |
run: CGO_CFLAGS=-Werror CC=clang go build ./... |