Compare commits

..

4 commits

Author SHA1 Message Date
66a848b5e7
alpine first in alt
Some checks failed
/ alpine (push) Successful in 42s
/ arch (push) Successful in 1m29s
/ fedora (push) Successful in 8m57s
/ opensuse (push) Successful in 2m41s
/ alma (push) Successful in 2m33s
/ rocky (push) Successful in 33m29s
/ ubuntu (push) Successful in 1m15s
/ debian (push) Failing after 58s
2024-10-13 20:59:05 +02:00
40fad99700
fedora later in main 2024-10-13 20:55:59 +02:00
68c64ef384
alpine first in main 2024-10-13 20:47:09 +02:00
496fd259e0
web 2024-10-13 20:42:44 +02:00
3 changed files with 26 additions and 26 deletions

View file

@ -1,9 +1,9 @@
on: [push]
jobs:
arch:
alpine:
container:
image: ${{vars.DOCKER}}archlinux:base-20240101.0.204074
image: ${{vars.DOCKER}}alpine:3.19
steps:
- name: spcd
env:
@ -15,11 +15,11 @@ jobs:
- run: spcd-build-project
- run: spcd-browse-workspace
alpine:
needs: arch
arch:
needs: alpine
if: failure() || success()
container:
image: ${{vars.DOCKER}}alpine:3.19
image: ${{vars.DOCKER}}archlinux:base-20240101.0.204074
steps:
- name: spcd
env:

View file

@ -1,23 +1,7 @@
on: [push]
jobs:
arch:
container:
image: ${{vars.DOCKER}}archlinux:base-20240818.0.255804
steps:
- name: spcd
env:
SPCD: ${{vars.SPCD}}
SPCD_TXT_LOCALE: ${{vars.SPCD_TXT_LOCALE}}
run: ${{vars.SPCD}}
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
alpine:
needs: arch
if: failure() || success()
container:
image: ${{vars.DOCKER}}alpine:3.20
steps:
@ -31,11 +15,11 @@ jobs:
- run: spcd-build-project
- run: spcd-browse-workspace
fedora:
arch:
needs: alpine
if: failure() || success()
container:
image: ${{vars.DOCKER}}fedora:40
image: ${{vars.DOCKER}}archlinux:base-20240818.0.255804
steps:
- name: spcd
env:
@ -48,7 +32,7 @@ jobs:
- run: spcd-browse-workspace
debian:
needs: fedora
needs: arch
if: failure() || success()
container:
image: ${{vars.DOCKER}}debian:bookworm
@ -98,9 +82,25 @@ jobs:
- run: spcd-build-project
- run: spcd-browse-workspace
alma:
fedora:
needs: ubuntu
if: failure() || success()
container:
image: ${{vars.DOCKER}}fedora:40
steps:
- name: spcd
env:
SPCD: ${{vars.SPCD}}
SPCD_TXT_LOCALE: ${{vars.SPCD_TXT_LOCALE}}
run: ${{vars.SPCD}}
- run: spcd-check-project
- run: spcd-build-project
- run: spcd-browse-workspace
alma:
needs: fedora
if: failure() || success()
container:
image: ${{vars.DOCKER}}almalinux:9
steps:

View file

@ -6,6 +6,6 @@ from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out"
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "spcd.rwx.work")