mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 00:25:55 +00:00
59 lines
No EOL
1.3 KiB
YAML
59 lines
No EOL
1.3 KiB
YAML
name: Release
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
build-featurebase:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
goos:
|
|
- "darwin"
|
|
- "linux"
|
|
goarch:
|
|
- "amd64"
|
|
- "arm64"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "^1.19.1"
|
|
|
|
- name: build featurebase
|
|
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build
|
|
|
|
# - uses: actions/upload-artifact@v3
|
|
# with:
|
|
# name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
# path: ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
|
|
build-ingest:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
goos:
|
|
- "darwin"
|
|
- "linux"
|
|
goarch:
|
|
- "amd64"
|
|
- "arm64"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "^1.19.1"
|
|
|
|
- name: navigate to ingest
|
|
run: cd idk
|
|
|
|
- name: build ingest
|
|
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build
|
|
|
|
# - uses: actions/upload-artifact@v3
|
|
# with:
|
|
# name: ingest-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
# path: ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }} |