Skip to content

Commit c1ca47b

Browse files
committed
fixing up some of the actions to test yacm
1 parent 06e7815 commit c1ca47b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/test.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212

1313
- name: Run systemd tests
14-
run: TEST=systemd make run-tests
14+
run: TEST=systemd make run-system-tests
1515

1616
test-runit:
1717
runs-on: ubuntu-latest
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v2
2222

2323
- name: Run runit test
24-
run: TEST=runit make run-tests
24+
run: TEST=runit make run-system-tests
2525

2626
test-apt:
2727
runs-on: ubuntu-latest
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v2
3232

3333
- name: Run apt tests
34-
run: TEST=apt make run-tests
34+
run: TEST=apt make run-system-tests
3535

3636
test-dnf:
3737
runs-on: ubuntu-latest
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/checkout@v2
4242

4343
- name: Run dnf tests
44-
run: TEST=dnf make run-tests
44+
run: TEST=dnf make run-system-tests
4545

4646
test-pacman:
4747
runs-on: ubuntu-latest
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v2
5252

5353
- name: Run pacman tests
54-
run: TEST=pacman make run-tests
54+
run: TEST=pacman make run-system-tests
5555

5656
test-paru:
5757
runs-on: ubuntu-latest
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@v2
6262

6363
- name: Run paru tests
64-
run: TEST=paru make run-tests
64+
run: TEST=paru make run-system-tests
6565

6666
test-yay:
6767
runs-on: ubuntu-latest
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v2
7272

7373
- name: Run yay tests
74-
run: TEST=yay make run-tests
74+
run: TEST=yay make run-system-tests
7575

7676
test-yum:
7777
runs-on: ubuntu-latest
@@ -81,4 +81,4 @@ jobs:
8181
uses: actions/checkout@v2
8282

8383
- name: Run yum tests
84-
run: TEST=yum make run-tests
84+
run: TEST=yum make run-system-tests

test/system-tests/runit/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM yacm-base
2-
FROM docker.io/artixlinux/runit:latest
2+
FROM docker.io/artixlinux/artixlinux:base-runit
33

44
COPY run-yacm.sh /root/
55

0 commit comments

Comments
 (0)