summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2020-01-06 00:35:46 -0500
committerGitHub <noreply@github.com>2020-01-06 00:35:46 -0500
commit09fe0afc140873f060ab18fd02a35245143e5841 (patch)
treeedbbd015347e34f041fcdc88508fb250bad2903a /.github
parent45e6b3e05284444e3237448515cfe599461b4c96 (diff)
ci: Remove Docker test environment from CI (#806)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 4963d5bec..459e9f4a2 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -152,24 +152,6 @@ jobs:
command: test
args: -- -Z unstable-options --include-ignored
- # Run the tests in the Docker image
- docker_test:
- name: Test in Docker
- needs: [cargo_check]
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Pull the pre-built Docker image
- run: docker pull starshipcommand/starship-test
- - name: Fix file permissions
- run: chmod -R a+w .
- - name: Build the Docker image
- run:
- docker build -f tests/Dockerfile --tag starshipcommand/starship-test --cache-from
- starshipcommand/starship-test .
- - name: Run tests in Docker
- run: docker run --rm -v $(pwd):/src/starship starshipcommand/starship-test
-
# Publish starship to Crates.io
cargo_publish:
if: startsWith(github.ref, 'refs/tags/v')