Skip to content

Commit

Permalink
Added crosscompile
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartendeKruijf committed Mar 6, 2024
1 parent 552395f commit 22b8352
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/crosscompile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Cross compile

on:
pull_request:
branches: [ master, development ]

jobs:
compile:
name: Cross compile binaries
runs-on: ubuntu-latest
container:
image: golangci/golangci-lint:latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install swaggo
run: go install github.com/swaggo/swag/cmd/swag@latest

- name: Build with make
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go install github.com/CycloneDX/cyclonedx-gomod/cmd/cyclonedx-gomod@latest
make compile
make sbom

0 comments on commit 22b8352

Please sign in to comment.