From 0f4378f92c2eea87f39d0bb9765bc19d0fdf6df2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Szuma?= Date: Wed, 8 May 2024 09:18:18 +0200 Subject: [PATCH] Disable circleci --- .circleci/config.yml | 8 ++++---- .github/workflows/deploy-image.yml | 10 ++++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f9dc46e..cf186ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,7 @@ workflows: filters: &filters tags: only: /v.*/ - - test - - elixir/lint: - filters: - <<: *filters + # - test + # - elixir/lint: + # filters: + # <<: *filters diff --git a/.github/workflows/deploy-image.yml b/.github/workflows/deploy-image.yml index 5c59922..0313b34 100644 --- a/.github/workflows/deploy-image.yml +++ b/.github/workflows/deploy-image.yml @@ -20,14 +20,17 @@ jobs: contents: read packages: write steps: + - uses: actions/checkout@v3 - name: Run e2e tests run: | set -e - pwd + echo $(pwd) echo "After pwd" - ls + echo $(ls) echo "After ls" - ls ./test/fixtures + echo $(ls ..) + echo "After ls .." + echo $(ls ./test/fixtures) echo "After ls test" for test in $(ls ./test/fixtures) do @@ -36,7 +39,6 @@ jobs: TEST_NAME=$test docker compose up output_verify --exit-code-from output_verify done - # - uses: actions/checkout@v3 # - name: Setup QEMU # uses: docker/setup-qemu-action@v2 # - name: Set up Docker Buildx