Skip to content

Commit

Permalink
Merge pull request #298 from stefannica/update-v0.3
Browse files Browse the repository at this point in the history
[0.3] Update configuration for 0.3 release
  • Loading branch information
stefannica committed Nov 19, 2021
2 parents 42b298f + 8b21163 commit a95c301
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Setup Ginkgo Test Framework
run: |
go get -u github.com/onsi/ginkgo/ginkgo
go install github.com/onsi/ginkgo/ginkgo
- name: Run unit tests
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: '^1.13.7'
- name: Setup Ginkgo Test Framework
run: |
go install github.com/onsi/ginkgo/ginkgo
- name: Build FuseML
run: |
make release
Expand Down Expand Up @@ -69,6 +72,10 @@ jobs:
with:
go-version: '^1.13.7'

- name: Setup Ginkgo Test Framework
run: |
go install github.com/onsi/ginkgo/ginkgo
- name: Set image name and tag
run: |
case "${GITHUB_REF}" in
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COPY kubernetes kubernetes/
COPY paas paas/
COPY statik statik/

RUN go get github.com/rakyll/statik
RUN go install github.com/rakyll/statik

# Build
RUN statik -m -f -src=./embedded-files
Expand Down
2 changes: 1 addition & 1 deletion embedded-files/fuseml-core-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
serviceAccountName: fuseml-core
containers:
- name: fuseml-core
image: ghcr.io/fuseml/fuseml-core:dev
image: ghcr.io/fuseml/fuseml-core:v0.3.0
imagePullPolicy: Always
env:
- name: GITEA_ADMIN_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion paas/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

var (
defaultConfigFilePath = os.ExpandEnv("${HOME}/.config/fuseml/config.yaml")
defaultExtensionsRepository = "https://raw.githubusercontent.com/fuseml/extensions/main/installer/"
defaultExtensionsRepository = "https://raw.githubusercontent.com/fuseml/extensions/release-0.3/installer/"
)

// Config represents a fuseml config
Expand Down

0 comments on commit a95c301

Please sign in to comment.