mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-14 20:34:00 +01:00
Remove incompatible compilers
This commit is contained in:
parent
a995c710c0
commit
c5b203acd6
89
.github/workflows/dub.yml
vendored
89
.github/workflows/dub.yml
vendored
|
@ -56,34 +56,13 @@ jobs:
|
||||||
- dmd-2.100.2
|
- dmd-2.100.2
|
||||||
- dmd-2.099.1
|
- dmd-2.099.1
|
||||||
- dmd-2.098.1
|
- dmd-2.098.1
|
||||||
- dmd-2.097.2
|
- dmd-2.097.2 # Baseline DMD version
|
||||||
- dmd-2.096.1
|
|
||||||
- dmd-2.095.1
|
|
||||||
- dmd-2.094.2
|
|
||||||
- dmd-2.093.1
|
|
||||||
- dmd-2.092.1
|
|
||||||
- dmd-2.091.1
|
|
||||||
- dmd-2.090.1
|
|
||||||
- dmd-2.089.1
|
|
||||||
- dmd-2.088.1
|
|
||||||
- dmd-2.087.1
|
|
||||||
- dmd-2.086.1 # Baseline DMD version
|
|
||||||
- ldc-1.32.0 # eq to dmd v2.102.2
|
- ldc-1.32.0 # eq to dmd v2.102.2
|
||||||
- ldc-1.31.0 # eq to dmd v2.101.2
|
- ldc-1.31.0 # eq to dmd v2.101.2
|
||||||
- ldc-1.30.0 # eq to dmd v2.100.1
|
- ldc-1.30.0 # eq to dmd v2.100.1
|
||||||
- ldc-1.29.0 # eq to dmd v2.099.1
|
- ldc-1.29.0 # eq to dmd v2.099.1
|
||||||
- ldc-1.28.1 # eq to dmd v2.098.1
|
- ldc-1.28.1 # eq to dmd v2.098.1
|
||||||
- ldc-1.27.1 # eq to dmd v2.097.1
|
- ldc-1.27.1 # eq to dmd v2.097.1
|
||||||
- ldc-1.26.0 # eq to dmd v2.096.1
|
|
||||||
- ldc-1.24.0 # eq to dmd v2.094.1
|
|
||||||
- ldc-1.23.0 # eq to dmd v2.093.1
|
|
||||||
- ldc-1.22.0 # eq to dmd v2.092.1
|
|
||||||
- ldc-1.21.0 # eq to dmd v2.091.1
|
|
||||||
- ldc-1.20.1 # eq to dmd v2.090.1
|
|
||||||
- ldc-1.19.0 # eq to dmd v2.089.1
|
|
||||||
- ldc-1.18.0 # eq to dmd v2.088.1
|
|
||||||
- ldc-1.17.0 # eq to dmd v2.087
|
|
||||||
- ldc-1.16.0 # eq to dmd v2.086.1
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
@ -107,40 +86,42 @@ jobs:
|
||||||
dub run --build=release --config=valueSubstitutionExample
|
dub run --build=release --config=valueSubstitutionExample
|
||||||
dub run --build=release --config=manipulationExample
|
dub run --build=release --config=manipulationExample
|
||||||
|
|
||||||
gdc-latest:
|
# GDC has compatibility issues
|
||||||
name: GDC on Ubuntu
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install DMD (so dub is available)
|
# gdc-latest:
|
||||||
uses: dlang-community/setup-dlang@v1
|
# name: GDC on Ubuntu
|
||||||
with:
|
# runs-on: ubuntu-latest
|
||||||
compiler: dmd-latest
|
# steps:
|
||||||
|
# - uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install GDC
|
# - name: Install DMD (so dub is available)
|
||||||
run: |
|
# uses: dlang-community/setup-dlang@v1
|
||||||
sudo apt-get update
|
# with:
|
||||||
sudo apt-get install gdc -y
|
# compiler: dmd-latest
|
||||||
gdc --version
|
|
||||||
|
|
||||||
- name: Build library
|
# - name: Install GDC
|
||||||
env:
|
# run: |
|
||||||
DC: gdc
|
# sudo apt-get update
|
||||||
run: dub build --compiler=gdc --build=release --config=library
|
# sudo apt-get install gdc -y
|
||||||
|
# gdc --version
|
||||||
|
|
||||||
- name: Build unittest
|
# - name: Build library
|
||||||
env:
|
# env:
|
||||||
DC: gdc
|
# DC: gdc
|
||||||
run: dub test --compiler=gdc --build=unittest --config=unittest
|
# run: dub build --compiler=gdc --build=release --config=library
|
||||||
|
|
||||||
- name: Build examples
|
# - name: Build unittest
|
||||||
env:
|
# env:
|
||||||
DC: gdc
|
# DC: gdc
|
||||||
run: |
|
# run: dub test --compiler=gdc --build=unittest --config=unittest
|
||||||
dub run --compiler=gdc --build=release --config=quickstartExample
|
|
||||||
dub run --compiler=gdc --build=release --config=jsonExample
|
# - name: Build examples
|
||||||
dub run --compiler=gdc --build=release --config=javaPropertiesExample
|
# env:
|
||||||
dub run --compiler=gdc --build=release --config=iniExample
|
# DC: gdc
|
||||||
dub run --compiler=gdc --build=release --config=valueSubstitutionExample
|
# run: |
|
||||||
dub run --compiler=gdc --build=release --config=manipulationExample
|
# dub run --compiler=gdc --build=release --config=quickstartExample
|
||||||
|
# dub run --compiler=gdc --build=release --config=jsonExample
|
||||||
|
# dub run --compiler=gdc --build=release --config=javaPropertiesExample
|
||||||
|
# dub run --compiler=gdc --build=release --config=iniExample
|
||||||
|
# dub run --compiler=gdc --build=release --config=valueSubstitutionExample
|
||||||
|
# dub run --compiler=gdc --build=release --config=manipulationExample
|
|
@ -4,7 +4,7 @@ Version 1.0.0
|
||||||
Copyright 2022-2023 Mike Bierlee
|
Copyright 2022-2023 Mike Bierlee
|
||||||
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
||||||
|
|
||||||
[![DUB Package](https://img.shields.io/dub/v/mirage-config.svg)](https://code.dlang.org/packages/mirage-config)
|
[![DUB Package](https://img.shields.io/dub/v/mirage-config.svg)](https://code.dlang.org/packages/mirage-config) [![CI](https://github.com/mbierlee/mirage-config/actions/workflows/dub.yml/badge.svg)](https://github.com/mbierlee/mirage-config/actions/workflows/dub.yml)
|
||||||
|
|
||||||
Toolkit for loading and using application configuration from various formats for the D programming language.
|
Toolkit for loading and using application configuration from various formats for the D programming language.
|
||||||
|
|
||||||
|
@ -15,6 +15,9 @@ Features:
|
||||||
- Internal configuration substitution (Value in config replaced by other path in config);
|
- Internal configuration substitution (Value in config replaced by other path in config);
|
||||||
- Parse configuration from string, JSONValue or from disk.
|
- Parse configuration from string, JSONValue or from disk.
|
||||||
|
|
||||||
|
Requires at least a D 2.097.2 compatible compiler
|
||||||
|
Uses the Phobos standard library
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
### DUB Dependency
|
### DUB Dependency
|
||||||
|
|
Loading…
Reference in a new issue