Skip to content

Commit

Permalink
Merge pull request #7566 from yuxiang-zhang/update-workflows
Browse files Browse the repository at this point in the history
Update workflows
  • Loading branch information
yuxiang-zhang committed Feb 16, 2024
2 parents 65b338a + 44c9e19 commit 2d6ad0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-release-type.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:
secrets:
githubToken:
required: true
slackToken:
required: true

jobs:
publish-release:
Expand All @@ -27,6 +25,8 @@ jobs:
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL
echo "Available storage:"
df -h
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Setup build environment
uses: ./.github/actions/setup-build
- name: Publish release
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,11 @@ build-integration-test: $(all_generated_code) ## Ensure integration tests compil
go build -tags integration -o ./eksctl-integration-test ./integration/main.go

.PHONY: integration-test
integration-test: build build-integration-test ## Run the integration tests (with cluster creation and cleanup)
integration-test: build build-integration-test ## Generate then build and run the integration tests (with cluster creation and cleanup)
INTEGRATION_TEST_FOCUS="$(INTEGRATION_TEST_FOCUS)" ./eksctl-integration-test $(INTEGRATION_TEST_ARGS)

.PHONY: integration-test-no-build
integration-test-no-build:
INTEGRATION_TEST_FOCUS="$(INTEGRATION_TEST_FOCUS)" ./eksctl-integration-test $(INTEGRATION_TEST_ARGS)

list-integration-suites:
Expand Down

0 comments on commit 2d6ad0d

Please sign in to comment.