Skip to content

Commit

Permalink
Update CI workflow to use new version of docker compose and newer Ubu…
Browse files Browse the repository at this point in the history
…ntu runner
  • Loading branch information
christopherwharrop-noaa committed Nov 1, 2024
1 parent ad037de commit 73f7735
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:

docker_compose_test:
name: Docker Compose Test
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
-
name: Checkout Repository
uses: actions/checkout@v4
-
name: Build and start containers
run: docker-compose -f docker-compose.yml up --build -d
run: docker compose -f docker-compose.yml up --build -d

-
name: Check cluster logs
run: docker-compose -f docker-compose.yml logs
run: docker compose -f docker-compose.yml logs

-
name: Check status of the cluster containers
run: docker-compose -f docker-compose.yml ps
run: docker compose -f docker-compose.yml ps

-
name: Check status of Slurm
Expand All @@ -51,7 +51,7 @@ jobs:
-
name: Shut down Slurm cluster containers
run: docker-compose -f docker-compose.yml down
run: docker compose -f docker-compose.yml down

build-frontend-arm64:
runs-on: LinuxARM64-4core-16G-150Gb
Expand Down

0 comments on commit 73f7735

Please sign in to comment.