Skip to content

Commit 1164461

Browse files
committed
Run windows scripts in bash
1 parent f1edf50 commit 1164461

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/validation.yml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
node-version: 21
2424

2525
- name: Install dolos
26+
shell: bash
2627
run: |
2728
npm install -g @dodona/dolos
2829
dolos --version
@@ -50,6 +51,7 @@ jobs:
5051
uses: actions/checkout@v4
5152

5253
- name: Run test script
54+
shell: bash
5355
run: ./test_compose.sh
5456
packaging:
5557
name: "Test packing and installing Dolos"

test_compose.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ set -e
33

44
# This script tests whether self-hosting the Dolos web-app works using the docker-compose.yml
55

6-
docker-compose down
7-
docker-compose pull
6+
docker compose down
7+
docker compose pull
88
docker pull ghcr.io/dodona-edu/dolos-cli:latest
9-
docker-compose up --wait --detach
9+
docker compose up --wait --detach
1010

1111
echo "Upload zipfile"
1212

0 commit comments

Comments
 (0)