Compare commits
4 commits
8fb9aff2a9
...
66a848b5e7
Author | SHA1 | Date | |
---|---|---|---|
66a848b5e7 | |||
40fad99700 | |||
68c64ef384 | |||
496fd259e0 |
3 changed files with 26 additions and 26 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
2
build.py
2
build.py
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue