Skip to content

Commit

Permalink
First CI try
Browse files Browse the repository at this point in the history
  • Loading branch information
delneg committed Oct 23, 2023
1 parent 0e78748 commit 82d1bd3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-ci-multiplatform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build CI multiplatform

on:
push:
branches: [ feat/no-sgx-cli ]


jobs:
linux-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: "Build linux-amd64"
run: make build-linux-cli-amd

macos-amd64:
runs-on: macos-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: "Build macos-amd64"
run: make build-macos-cli-amd

windows-amd64:
runs-on: windows-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: "Build windows-amd64"
run: make build-windows-cli

0 comments on commit 82d1bd3

Please sign in to comment.