Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/project-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,18 @@ jobs:
find ./charts | grep Chart.yaml | xargs dirname | xargs helm lint

build:
strategy:
fail-fast: false
matrix:
runner: ["ubuntu-latest", "ubuntu-24.04-arm"]
env:
GOPATH: ${{ github.workspace }}
GO111MODULE: auto
CI_TEST_FLAGS: -race -coverprofile=coverage.txt -covermode=atomic
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/fluid-cloudnative/fluid
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
steps:
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PACKAGE := github.com/fluid-cloudnative/fluid
# Go and build settings
GO_MODULE ?= off
GC_FLAGS ?= -gcflags="all=-N -l"
LOCAL_FLAGS ?= -gcflags=-l
LOCAL_FLAGS ?= -gcflags="all=-N -l"
CGO_ENABLED ?= 0
GOOS ?= linux
GOBIN := $(shell if [ -z "$(shell go env GOBIN)" ]; then echo "$(shell go env GOPATH)/bin"; else echo "$(shell go env GOBIN)"; fi)
Expand Down
5 changes: 5 additions & 0 deletions api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading