mirror of https://github.com/portainer/portainer
updated Makefile and workflow
parent
75431b9d36
commit
25696c29eb
|
@ -42,9 +42,9 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
config:
|
config:
|
||||||
- { platform: linux, arch: amd64 }
|
- { platform: linux, arch: amd64 }
|
||||||
- { platform: linux, arch: arm64 }
|
# - { platform: linux, arch: arm64 }
|
||||||
- { platform: windows, arch: amd64, version: 1809 }
|
# - { platform: windows, arch: amd64, version: 1809 }
|
||||||
- { platform: windows, arch: amd64, version: ltsc2022 }
|
# - { platform: windows, arch: amd64, version: ltsc2022 }
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.event.pull_request.draft == false
|
if: github.event.pull_request.draft == false
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -65,7 +65,7 @@ clean: ## Remove all build and download artifacts
|
||||||
test: test-server test-client ## Run all tests
|
test: test-server test-client ## Run all tests
|
||||||
|
|
||||||
test-deps: init-dist
|
test-deps: init-dist
|
||||||
./build/download_docker_compose_binary.sh linux amd64 $(shell jq -r '.dockerCompose' < "./binary-version.json")
|
./build/download_docker_compose_binary.sh $(PLATFORM) $(ARCH) $(shell jq -r '.dockerCompose' < "./binary-version.json")
|
||||||
|
|
||||||
test-client: ## Run client tests
|
test-client: ## Run client tests
|
||||||
yarn test $(ARGS)
|
yarn test $(ARGS)
|
||||||
|
|
Loading…
Reference in New Issue