-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09e1822
commit 5dca642
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Alpine Linux (musl libc) | ||
on: | ||
- pull_request | ||
- push | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Alpine Linux (musl libc) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 50 | ||
|
||
- name: Setup latest Alpine Linux | ||
uses: jirutka/setup-alpine@v1 | ||
with: | ||
branch: v3.20 | ||
packages: ldc git g++ cmake ninja llvm-dev llvm-static libunwind-static libxml2-static zstd-static zlib-static bash grep diffutils make | ||
|
||
- name: Build LDC bootstrap | ||
run: | | ||
ninja --version | ||
set -eux | ||
mkdir bootstrap | ||
cd bootstrap | ||
cmake -G Ninja .. \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX="/opt/ldc2" \ | ||
-DCMAKE_EXE_LINKER_FLAGS=-static-libstdc++ \ | ||
-DD_COMPILER_FLAGS=-link-defaultlib-shared=false \ | ||
-DBUILD_SHARED_LIBS=OFF | ||
ninja obj/ldc2.o all | ||
bin/ldc2 --version | ||
cd .. | ||
# TODO: Add '-DLLVM_IS_SHARED=OFF' when static linking is fully supported | ||
- name: Build LDC & LDC D unittests & defaultlib unittest runners | ||
run: | | ||
set -eux | ||
cmake -G Ninja . \ | ||
-DD_COMPILER=./bootstrap/bin/ldmd2 | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX="/opt/ldc2" \ | ||
-DCMAKE_EXE_LINKER_FLAGS=-static-libstdc++ \ | ||
-DD_COMPILER_FLAGS=-link-defaultlib-shared=false \ | ||
-DBUILD_SHARED_LIBS=OFF | ||
ninja obj/ldc2.o all ldc2-unittest all-test-runners | ||
bin/ldc2 --version | ||
ldd bin/ldc2 | ||
shell: alpine.sh {0} | ||
- name: Run LDC D unittests | ||
if: success() || failure() | ||
run: ctest --output-on-failure -R "ldc2-unittest" | ||
shell: alpine.sh {0} | ||
- name: Run LIT testsuite | ||
if: success() || failure() | ||
run: | | ||
set -eux | ||
ctest -V -R "lit-tests" | ||
shell: alpine.sh {0} | ||
- name: Run DMD testsuite | ||
if: success() || failure() | ||
run: ctest -V -R "dmd-testsuite" | ||
shell: alpine.sh {0} | ||
- name: Run defaultlib unittests & druntime integration tests | ||
if: success() || failure() | ||
run: | | ||
set -eux | ||
ctest -j$(nproc) --output-on-failure -E "dmd-testsuite|lit-tests|ldc2-unittest" | ||
shell: alpine.sh {0} |