Skip to content

Commit 8f84358

Browse files
committed
simplifying build
1 parent 2a9e614 commit 8f84358

2 files changed

Lines changed: 0 additions & 80 deletions

File tree

.github/workflows/build-validation.yml

Lines changed: 0 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -112,81 +112,3 @@ jobs:
112112
- name: Fail the job if tests failed
113113
if: env.TEST_FAILED == 'true'
114114
run: exit 1
115-
116-
functions-e2e-tests:
117-
118-
needs: build
119-
runs-on: ubuntu-latest
120-
121-
steps:
122-
- uses: actions/checkout@v2
123-
124-
- name: Set up JDK 8
125-
uses: actions/setup-java@v2
126-
with:
127-
java-version: '8'
128-
distribution: 'temurin'
129-
130-
- name: Setup Gradle
131-
uses: gradle/gradle-build-action@v2
132-
133-
- name: Publish to local
134-
run: ./gradlew publishToMavenLocal -PskipSigning
135-
136-
- name: Build azure functions sample
137-
run: ./gradlew azureFunctionsPackage
138-
continue-on-error: true
139-
140-
- name: Setup azure functions runtime
141-
run: endtoendtests/e2e-test-setup.ps1 -DockerfilePath endtoendtests/Dockerfile
142-
shell: pwsh
143-
144-
- name: End to End Tests with Gradle
145-
uses: gradle/gradle-build-action@v2
146-
with:
147-
arguments: endToEndTest
148-
149-
- name: Archive test report
150-
uses: actions/upload-artifact@v4
151-
with:
152-
name: Integration test report
153-
path: client/build/reports/tests/endToEndTest
154-
155-
functions-sample-tests:
156-
157-
needs: build
158-
runs-on: ubuntu-latest
159-
160-
steps:
161-
- uses: actions/checkout@v2
162-
163-
- name: Set up JDK 8
164-
uses: actions/setup-java@v2
165-
with:
166-
java-version: '8'
167-
distribution: 'temurin'
168-
169-
- name: Setup Gradle
170-
uses: gradle/gradle-build-action@v2
171-
172-
- name: Publish to local
173-
run: ./gradlew publishToMavenLocal -PskipSigning
174-
175-
- name: Build azure functions sample
176-
run: ./gradlew azureFunctionsPackage
177-
continue-on-error: true
178-
179-
- name: Setup azure functions runtime
180-
run: samples-azure-functions/e2e-test-setup.ps1 -DockerfilePath samples-azure-functions/Dockerfile
181-
shell: pwsh
182-
183-
- name: Sample Tests with Gradle
184-
uses: gradle/gradle-build-action@v2
185-
with:
186-
arguments: sampleTest
187-
188-
- name: Archive test report
189-
uses: actions/upload-artifact@v4
190-
with:
191-
name: Integration test report
192-
path: client/build/reports/tests/endToEndTest

settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
rootProject.name = 'durabletask-java'
22

33
include ":client"
4-
include ":samples"
5-
include ":endtoendtests"
64

0 commit comments

Comments
 (0)