diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 19:44:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 19:44:38 +0300 |
commit | 514f16d51d186f832ff3a57f2fe3f86ffe21ddb1 (patch) | |
tree | 8a928350f0334c7cfa81aea19b72162bbbd6a642 | |
parent | workflows/ci.yml: tweaks (diff) | |
download | math-server-514f16d51d186f832ff3a57f2fe3f86ffe21ddb1.tar.gz math-server-514f16d51d186f832ff3a57f2fe3f86ffe21ddb1.zip |
workflows/ci.yml: remove manual Docker builds
-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] |