mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
includes 'featurebase' and 'ingest' in build object names
This commit is contained in:
parent
9bd9aa8069
commit
4b435cdeca
1 changed files with 23 additions and 5 deletions
28
.github/workflows/release.yml
vendored
28
.github/workflows/release.yml
vendored
|
|
@ -3,7 +3,7 @@ name: Release
|
|||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-featurebase:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
@ -22,20 +22,38 @@ jobs:
|
|||
go-version: "^1.19.1"
|
||||
|
||||
- name: build featurebase
|
||||
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
path: ./build/${{ 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 }} go build -o ./build/${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ingest-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
path: ./build/${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
path: ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
Loading…
Add table
Reference in a new issue