diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e7bc5f..b8233a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,32 +68,8 @@ jobs: run: ./test/stress_test.sh ../install if: runner.os == 'Linux' - native: - needs: [build] - runs-on: ubuntu-18.04 - name: 'Docker: build native images' - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - submodules: recursive - - name: Build native images - run: make docker/build - - compose: - needs: [build] - runs-on: ubuntu-18.04 - name: 'Docker: build using Compose' - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - submodules: recursive - - name: Build using Compose - run: make compose/build - publish: - needs: [lint, native, compose] + needs: [lint] strategy: matrix: project: [client, server] |