tlang/.github/workflows/d.yml

165 lines
5.0 KiB
YAML
Raw Normal View History

2023-02-26 17:49:20 +00:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: D
on:
push:
branches: [ "vardec_varass_dependency" ]
pull_request:
branches: [ "vardec_varass_dependency" ]
workflow_dispatch:
permissions:
contents: read
jobs:
2023-03-26 11:52:55 +01:00
build:
name: Build
2023-03-25 20:59:22 +00:00
strategy:
matrix:
2023-03-26 11:52:55 +01:00
os: [ubuntu-latest]
2023-03-25 21:01:02 +00:00
dc: [dmd-2.101.0]
2023-03-25 20:59:22 +00:00
exclude:
- { os: macOS-latest, dc: dmd-2.085.0 }
2023-02-26 17:49:20 +00:00
2023-03-25 20:59:22 +00:00
runs-on: ${{ matrix.os }}
2023-02-26 17:49:20 +00:00
steps:
2023-03-25 20:59:22 +00:00
- uses: actions/checkout@v2
2023-03-26 11:47:56 +01:00
2023-03-26 11:43:17 +01:00
2023-03-25 20:59:22 +00:00
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
2023-02-26 17:49:20 +00:00
2023-03-26 11:46:05 +01:00
- name: Build
run: dub build
2023-03-26 11:58:47 +01:00
2023-03-26 11:57:38 +01:00
2023-03-26 11:47:56 +01:00
- uses: actions/upload-artifact@v3
with:
name: tbin
path: tlang
2023-03-26 12:21:30 +01:00
unittests:
needs: build
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download math result for job 1
uses: actions/download-artifact@v3
with:
name: tbin
- name: DUB unit tests with coverage
run: dub test --coverage
- uses: actions/upload-artifact@v3
with:
name: coverage files
path: \*.lst
2023-03-26 12:15:43 +01:00
typecheck:
2023-03-26 11:52:55 +01:00
needs: build
2023-03-26 12:15:43 +01:00
name: Typechecking tests
2023-03-26 11:52:55 +01:00
runs-on: ubuntu-latest
steps:
2023-03-26 12:02:30 +01:00
- uses: actions/checkout@v2
2023-03-26 11:52:55 +01:00
- name: Download math result for job 1
uses: actions/download-artifact@v3
with:
name: tbin
2023-03-26 11:47:56 +01:00
2023-03-26 11:58:47 +01:00
- name: Chmod compiler
run: chmod +x tlang
2023-03-26 12:01:07 +01:00
- name: Simple function call
run: ./tlang typecheck source/tlang/testing/typecheck/simple_function_call.t
2023-03-26 12:09:49 +01:00
- name: Simple function call 1
run: ./tlang typecheck source/tlang/testing/typecheck/simple_function_call_1.t
- name: Simple float constant
run: ./tlang typecheck source/tlang/testing/typecheck/simple_float_constant.t
- name: Simple float constant bad
run: ./tlang typecheck source/tlang/testing/typecheck/simple_float_constant_bad.t
- name: Simple string
run: ./tlang typecheck source/tlang/testing/typecheck/simple_string.t
- name: Simple array
run: ./tlang typecheck source/tlang/testing/typecheck/simple_array.t
2023-03-26 12:12:12 +01:00
2023-03-26 12:09:49 +01:00
- name: Collide container module1
run: ./tlang typecheck source/tlang/testing/collide_container_module1.t
- name: Collide container module2
run: ./tlang typecheck source/tlang/testing/collide_container_module2.t
2023-03-26 12:12:12 +01:00
- name: Collide container non-module
run: ./tlang typecheck source/tlang/testing/collide_container_non_module.t
- name: Collide container
run: ./tlang typecheck source/tlang/testing/collide_container.t
- name: Collide member
run: ./tlang typecheck source/tlang/testing/collide_member.t
2023-03-26 12:15:43 +01:00
- name: Precedence collision test
run: ./tlang typecheck source/tlang/testing/precedence_collision_test.t
2023-03-26 12:09:49 +01:00
2023-03-26 12:15:43 +01:00
- name: Else if without if
run: ./tlang typecheck source/tlang/testing/else_if_without_if.pl
- name: Simple module positive
run: ./tlang typecheck source/tlang/testing/simple1_module_positive.t
- name: Simple OOP
run: ./tlang typecheck source/tlang/testing/simple1_oop.t
- name: Simple name recognition
run: ./tlang typecheck source/tlang/testing/simple2_name_recognition.t
- name: test3
run: ./tlang typecheck source/tlang/testing/test3.t
2023-03-26 12:12:12 +01:00
2023-03-26 12:18:50 +01:00
emit:
needs: build
name: Emit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download math result for job 1
uses: actions/download-artifact@v3
with:
name: tbin
- name: Chmod compiler
run: chmod +x tlang
- name: Simple functions
run: |
./tlang compile source/tlang/testing/simple_functions.t
./tlang.out
- name: Simple variables
run: |
./tlang compile source/tlang/testing/simple_variables.t
./tlang.out
- name: Simple conditions
run: |
./tlang compile source/tlang/testing/simple_conditions.t
./tlang.out
- name: Nested conditionals
run: |
./tlang compile source/tlang/testing/nested_conditionals.t
./tlang.out
- name: Simple function decls
run: |
./tlang compile source/tlang/testing/simple_function_decls.t
./tlang.out
- name: Simple function (only) decls
run: |
./tlang compile source/tlang/testing/simple_variables_only_decs.t
./tlang.out
- name: Simple variables decls assignment
run: |
./tlang compile source/tlang/testing/simple_variables_decls_ass.t
./tlang.out
- name: Simple while
run: |
./tlang compile source/tlang/testing/simple_while.t
./tlang.out