Skip to content

Commit

Permalink
Disable sass mixed-decls warnings; fix CI (#5221)
Browse files Browse the repository at this point in the history
* Force sass 1.77.6

sass 1.77.7+ adds a warning about mixing nested and unnested css
https://sass-lang.com/documentation/breaking-changes/mixed-decls/
most of these are in patternfly, so newer sass may need to wait for patternfly 6

* cypress.yml: provide docker-compose - call docker compose
  • Loading branch information
himdel authored Sep 16, 2024
1 parent 1fb9ddc commit a4654e5
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 25 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ jobs:
../ansible-hub-ui/test/cypress/e2e/"${{ matrix.test }}"/compose.env \
| sed 's/^\s\+//' | tee compose.env || [ -s compose.env ]
# oci-env compose build: FileNotFoundError: [Errno 2] No such file or directory: 'docker-compose'
- name: "Provide docker-compose"
run: |
mkdir -p /home/runner/.local/bin/
cd /home/runner/.local/bin/
( echo '#!/bin/sh' ; echo 'docker compose "$@"' ) > docker-compose
chmod +x docker-compose
- name: "oci-env compose build"
working-directory: 'oci_env'
run: 'oci-env compose build'
Expand Down
Loading

0 comments on commit a4654e5

Please sign in to comment.