diff --git a/.github/workflows/Build-Android.yml b/.github/workflows/Build-Android.yml deleted file mode 100644 index ea37aab065..0000000000 --- a/.github/workflows/Build-Android.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Build-Android - -on: [pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Make gradlew executable - run: chmod +x ./Android/gradlew - - name: Build with Gradle - run: ./Android/gradlew build \ No newline at end of file diff --git a/.github/workflows/build-iOS.yml b/.github/workflows/build-iOS.yml deleted file mode 100644 index 3871adb2ac..0000000000 --- a/.github/workflows/build-iOS.yml +++ /dev/null @@ -1,18 +0,0 @@ -on: [pull_request] -name: Build-iOS -jobs: - test: - name: Build - runs-on: macOS-latest - strategy: - matrix: - destination: ['platform=iOS Simulator,OS=13.3,name=iPhone 11'] - steps: - - name: Checkout - uses: actions/checkout@master - - name: Build - run: | - cd iOS/HPHC - xcodebuild clean build -workspace HPHC.xcworkspace -scheme HPHC -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO - env: - destination: ${{ matrix.destination }} diff --git a/.github/workflows/build-response-server.yml b/.github/workflows/build-response-server.yml deleted file mode 100644 index b1268fe499..0000000000 --- a/.github/workflows/build-response-server.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - pull_request: - branches: [ unc-cv19 ] -name: Build-response-server-ws -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Build with Maven - run: | - cd response-server-ws - mvn -B package --file pom.xml diff --git a/.github/workflows/build-user-registration-server-consent.yml b/.github/workflows/build-user-registration-server-consent.yml deleted file mode 100644 index 73297a25e0..0000000000 --- a/.github/workflows/build-user-registration-server-consent.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - pull_request: - branches: [ unc-cv19 ] -name: Build user-registration-server-ws-consent -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Build with Maven - run: | - cd user-registration-server-ws/consent-mgmt - mvn -B package --file pom.xml diff --git a/.github/workflows/build-user-registration-server-enroll.yml b/.github/workflows/build-user-registration-server-enroll.yml deleted file mode 100644 index 0d0967aa1a..0000000000 --- a/.github/workflows/build-user-registration-server-enroll.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - pull_request: - branches: [ unc-cv19 ] -name: Build user-registration-server-ws-enroll -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Build with Maven - run: | - cd user-registration-server-ws/enroll-mgmt - mvn -B package --file pom.xml diff --git a/.github/workflows/build-user-registration-server-user-mgmt.yml b/.github/workflows/build-user-registration-server-user-mgmt.yml deleted file mode 100644 index 15beba6237..0000000000 --- a/.github/workflows/build-user-registration-server-user-mgmt.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - pull_request: - branches: [ unc-cv19 ] -name: Build user-registration-server-ws-user-mgmt -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Build with Maven - run: | - cd user-registration-server-ws/user-mgmt - mvn -B package --file pom.xml