Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
matrix:
include:
# Disabled as we rely on DIP1000 `foreach (scope)` which GDC < 12 doesn't support
# - { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
- { dc: ldc, dcpkg: ldc, dcbin: ldc2 }
- { dc: dmd, dcpkg: dmd, dcbin: dmd }
# - { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
- { dc: ldc, dcpkg: "ldc ldc-runtime", dcbin: ldc2 }
- { dc: dmd, dcpkg: dmd, dcbin: dmd }

# OS doesn't matter, we just need Docker
runs-on: ubuntu-latest
Expand All @@ -43,4 +43,4 @@ jobs:
-f docker/Dockerfile.alpine $(pwd)

- name: Test
run: docker run alpine-dub-image
run: docker run --init alpine-dub-image
4 changes: 2 additions & 2 deletions docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:edge AS Builder
FROM alpine:edge AS builder

# DCPKG is the name of the package, DCBIN the name of the binary
# We need this because of the ldc / ldc2 disparity
Expand All @@ -20,4 +20,4 @@ ENV DC=$DCBIN

# Finally, just run the test-suite
WORKDIR /root/build/test/
ENTRYPOINT [ "/root/build/test/run-unittest.sh" ]
CMD [ "/root/build/test/run-unittest.sh" ]
Loading