Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Add basic file for DAST (#152) #69

Add basic file for DAST (#152)

Add basic file for DAST (#152) #69

---
name: "Cross compilation"
on:
push:
branches: [main]
paths-ignore:
- '**.md'
- '.wordlist.txt'
pull_request:
paths-ignore:
- '**.md'
- '.wordlist.txt'
jobs:
cross-compile:
runs-on: ubuntu-latest
strategy:
matrix:
Arch: [ppc64le, s390x, arm64]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Go-Setup
uses: actions/setup-go@v4.0.1
with:
go-version: 1.20.4
- name: Build
env:
GOARCH: ${{matrix.Arch}}
run: |
V=1 TANG_OPERATOR_CI=1 GOOS=$(go env GOOS) GOARCH=$GOARCH GOPATH=$(go env GOPATH) make build