Skip to content

Commit

Permalink
ci: Skip all docker-compose–based CI
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjbeaumont committed Sep 16, 2024
1 parent e434f39 commit a6efc31
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ services:

soundness:
<<: *common
command: /bin/bash -xcl "swift -version && uname -a && ./scripts/soundness.sh"
command: echo "skipping; moved to Github Actions"

test:
<<: *common
command: /bin/bash -xcl "swift $${SWIFT_TEST_VERB-test} $${WARN_AS_ERROR_ARG-} $${SANITIZER_ARG-} $${IMPORT_CHECK_ARG-} $${STRICT_CONCURRENCY_ARG-}"
command: echo "skipping; moved to Github Actions"

shell:
<<: *common
entrypoint: /bin/bash

integration-test:
<<: *common
command: /bin/bash -xcl "swift -version && uname -a && bash ./scripts/run-integration-test.sh"
command: echo "skipping; moved to Github Actions"
environment:
SWIFT_OPENAPI_GENERATOR_REPO_URL: file:///code

compatibility-test:
<<: *common
command: /bin/bash -xcl "cat /proc/cpuinfo && cat /proc/meminfo && swift test --filter $${SWIFT_OPENAPI_COMPATIBILITY_TEST_FILTER}"
command: echo "skipping; moved to Github Actions"
environment: # These can be overridden when running locally.
SWIFT_OPENAPI_COMPATIBILITY_TEST_ENABLE: "true"
SWIFT_OPENAPI_COMPATIBILITY_TEST_SKIP_BUILD: "true"
Expand All @@ -54,10 +54,10 @@ services:

docc-test:
<<: *common
command: /bin/bash -xcl "swift -version && uname -a && bash ./scripts/check-for-docc-warnings.sh"
command: echo "skipping; moved to Github Actions"
environment:
DOCC_TARGET: swift-openapi-generator

examples:
<<: *common
command: /bin/bash -xcl "swift -version && uname -a && bash ./scripts/test-examples.sh"
command: echo "skipping; moved to Github Actions"

0 comments on commit a6efc31

Please sign in to comment.