Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Break up tests: build, bats, bats-nocontainer, docker, mac-nocontainer #331

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 30 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
- main

jobs:
linux:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install bats
- name: install
shell: bash
run: |
sudo apt-get update
sudo apt-get install podman bats bash codespell python3-argcomplete pipx
sudo apt-get install podman bash
make install-requirements
- name: Print disk space before cleanup
shell: bash
Expand Down Expand Up @@ -49,6 +49,20 @@ jobs:
- name: run bats
run: |
make build

bats:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install bats
shell: bash
run: |
sudo apt-get update
sudo apt-get install podman bats bash codespell python3-argcomplete pipx
make install-requirements

- name: run bats
run: |
make validate
make bats

Expand All @@ -57,43 +71,32 @@ jobs:
pip install tqdm --break-system-packages
make bats-nocontainer

docker:
bats-nocontainer:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install bats
shell: bash
run: |
sudo apt-get update
sudo apt-get install bats bash codespell python3-argcomplete pipx
sudo apt-get install podman bats bash codespell python3-argcomplete pipx
make install-requirements
- name: Print disk space before cleanup
shell: bash
run: |
df -h
- name: Free Disk Space Linux
shell: bash
run: |
sudo docker rmi "$(docker image ls -aq)" >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true

# /mnt has ~ 65 GB free disk space. / is too small.
- name: Reconfigure Docker data-root
- name: bats-nocontainer
run: |
sudo mkdir -p /mnt/docker /etc/docker
echo '{"data-root": "/mnt/docker"}' > /tmp/daemon.json
sudo mv /tmp/daemon.json /etc/docker/daemon.json
cat /etc/docker/daemon.json
sudo systemctl restart docker.service
df -h
pip install tqdm --break-system-packages
make bats-nocontainer

- name: Print disk space after cleanup
docker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install bats
shell: bash
run: |
df -h
sudo apt-get update
sudo apt-get install bats bash codespell python3-argcomplete pipx
make install-requirements

- name: bats-docker
run: |
Expand Down
Loading