diff --git a/.buildkite/blob_build.yml b/.buildkite/blob_build.yml new file mode 100644 index 000000000..ae0ad79e6 --- /dev/null +++ b/.buildkite/blob_build.yml @@ -0,0 +1,4 @@ +steps: + - command: 'cd services && docker-compose build --no-cache blob-server' + agents: + - 'autoscaling=true' diff --git a/.github/workflows/blob_build.yml b/.github/workflows/blob_build.yml new file mode 100644 index 000000000..f391f94f8 --- /dev/null +++ b/.github/workflows/blob_build.yml @@ -0,0 +1,21 @@ +name: Blob Build (Docker) + +on: + push: + branches: [master] + paths-ignore: + - 'landing/**' + - 'web/**' + - 'docs/**' + - 'keyserver/**' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: docker-compose build --no-cache blob-server + working-directory: ./services + run: docker-compose build --no-cache blob-server