Run tests for extended_pascal. #31
Workflow file for this run
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
name: Run all D Tests | |
on: [push, pull_request] | |
jobs: | |
generated: | |
name: Make sure that the parser is generated from the grammar | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
dc: [dmd-2.101.2] # Avoid https://dlang.org/changelog/2.102.0.html#build-cache | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Run test | |
working-directory: ./pegged/dev | |
run: rdmd -I../.. -I../../examples/peggedgrammar/src -I../../examples/misc/src regenerate.d --validate | |
unittest: | |
name: Pegged unit tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
dc: [dmd-latest, ldc-latest, dmd-2.087.1, dmd-2.090.1, ldc-1.17.0, ldc-1.20.0] | |
exclude: | |
# dyld[2053]: missing symbol called | |
- { os: macOS-latest, dc: dmd-2.087.1 } | |
# ld: section __DATA/__thread_bss has type zero-fill but non-zero file offset | |
- { os: macOS-latest, dc: dmd-2.090.1 } | |
# needs -lowmem | |
- { os: windows-latest, dc: dmd-2.090.1 } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Run tests | |
run: dub -q test | |
examples: | |
name: Examples unit tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
dc: [dmd-2.101.2] # Avoid https://dlang.org/changelog/2.102.0.html#build-cache | |
example: [arithmetic, c, csv, json, numbers, python, simple_arithmetic, strings, xml] | |
exclude: | |
# out of memory | |
- { example: python } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Test example | |
run: dub test :${{ matrix.example }} | |
runtests: | |
name: Examples runtests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
dc: [dmd-2.101.2] # Avoid https://dlang.org/changelog/2.102.0.html#build-cache | |
example: [extended_pascal] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Test example | |
working-directory: examples/${{ matrix.example }} | |
run: rdmd runtests |