mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 04:14:01 +01:00 
			
		
		
		
	Fix cross compile (#10952)
* Fix cross compile * Add test for cross compile * Fix drone * Fix drone * Also prevent CC environment not to generate Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		
							parent
							
								
									baadb51445
								
							
						
					
					
						commit
						686850e21f
					
				
							
								
								
									
										15
									
								
								.drone.yml
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								.drone.yml
									
									
									
									
									
								
							@ -51,6 +51,21 @@ steps:
 | 
			
		||||
      - go build -mod=vendor -o gitea_no_gcc # test if build succeeds without the sqlite tag
 | 
			
		||||
    depends_on: [lint-backend]
 | 
			
		||||
 | 
			
		||||
  - name: build-backend-arm64
 | 
			
		||||
    pull: always
 | 
			
		||||
    image: golang:1.14
 | 
			
		||||
    environment:
 | 
			
		||||
      GO111MODULE: on
 | 
			
		||||
      GOPROXY: off
 | 
			
		||||
      GOOS: linux
 | 
			
		||||
      GOARCH: arm64
 | 
			
		||||
      TAGS: bindata
 | 
			
		||||
    commands:
 | 
			
		||||
      - curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt -y install nodejs
 | 
			
		||||
      - make build # test cross compile
 | 
			
		||||
      - rm ./gitea # clean
 | 
			
		||||
    depends_on: [lint-backend]
 | 
			
		||||
 | 
			
		||||
  - name: build-backend-386
 | 
			
		||||
    pull: always
 | 
			
		||||
    image: golang:1.14
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							@ -481,7 +481,7 @@ backend: go-check generate $(EXECUTABLE)
 | 
			
		||||
 | 
			
		||||
.PHONY: generate
 | 
			
		||||
generate: $(TAGS_PREREQ)
 | 
			
		||||
	$(GO) generate -mod=vendor -tags '$(TAGS)' $(GO_PACKAGES)
 | 
			
		||||
	CC= GOOS= GOARCH= $(GO) generate -mod=vendor -tags '$(TAGS)' $(GO_PACKAGES)
 | 
			
		||||
 | 
			
		||||
$(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ)
 | 
			
		||||
	$(GO) build -mod=vendor $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user