Skip to content

Commit

Permalink
rm swift
Browse files Browse the repository at this point in the history
  • Loading branch information
szachovy committed Jun 23, 2024
1 parent d0b9965 commit f01506e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sudo apt update
sudo apt install --yes openssh-server=1:8.9p1-3ubuntu0.7
sudo apt install --yes tree
rm -rf /opt/hostedtoolcache/CodeQL /opt/hostedtoolcache/node /opt/az /opt/microsoft
rm -rf /opt/hostedtoolcache/CodeQL /opt/hostedtoolcache/node /opt/az /opt/microsoft /usr/share/swift
sudo service ssh start
- name: Initialize Terraform infrastructure
Expand Down
29 changes: 29 additions & 0 deletions linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

name: Lint

on:
push:
branches: '**'

jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup TFLint
uses: terraform-linters/setup-tflint@v4
with:
tflint_version: v0.50.3

- name: Initialize TFLint
run: tflint --init
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Run TFLint
run: tflint -f compact

- name: Run ansible-lint
uses: ansible/ansible-lint@main
4 changes: 3 additions & 1 deletion tests/testsuite/roles/testing/tasks/system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
superset_node_address=$(superset_node_address)
docker_swarm_token=$(docker_swarm_token "${superset_node_address}")
clusterize_nodes
start_superset > /tmp/start_superset.log 2>&1
df -h > /tmp/start_superset.log 2>&1
free -m >> /tmp/start_superset.log 2>&1
start_superset >> /tmp/start_superset.log 2>&1
args:
executable: /bin/bash
ignore_errors: yes
Expand Down

0 comments on commit f01506e

Please sign in to comment.