diff --git a/.buildkite/services.yml b/.buildkite/services.yml deleted file mode 100644 index 2cf18bbf6..000000000 --- a/.buildkite/services.yml +++ /dev/null @@ -1,6 +0,0 @@ -steps: - - command: - - 'yarn cleaninstall --frozen-lockfile --skip-optional' - - 'cd services && yarn build-all' - agents: - - 'docker=true' diff --git a/.github/workflows/services_ci.yml b/.github/workflows/services_ci.yml deleted file mode 100644 index ebe7ecd99..000000000 --- a/.github/workflows/services_ci.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Services CI - -on: - push: - branches: [master] - paths-ignore: - - 'landing/**' - - 'web/**' - - 'docs/**' - - 'keyserver/**' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Install Yarn - run: npm install -g yarn - - - name: yarn --frozen-lockfile - run: yarn --frozen-lockfile - - - name: Build Services - working-directory: ./services - run: yarn build-all