Skip to content

would you rather have infinite gold coins but you have dig a treasure chest in a public park every day youve made a transaction with gold or infinite silver coins but you can only drink wine and bathe in olive oil like the romans #638

would you rather have infinite gold coins but you have dig a treasure chest in a public park every day youve made a transaction with gold or infinite silver coins but you can only drink wine and bathe in olive oil like the romans

would you rather have infinite gold coins but you have dig a treasure chest in a public park every day youve made a transaction with gold or infinite silver coins but you can only drink wine and bathe in olive oil like the romans #638

Workflow file for this run

name: gdc
on: [push, pull_request]
jobs:
test:
name: Dub Tests
strategy:
matrix:
os: [ubuntu-22.04]
dc:
- ldc-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- name: Install DUB
run: |
wget https://github.com/dlang/dub/releases/download/v1.29.0/dub-v1.29.0-linux-x86_64.tar.gz
tar xvf dub-v1.29.0-linux-x86_64.tar.gz
- name: Install GDC
run: |
sudo apt update
sudo apt -y install gdc-12
- name: Vanilla unittest
run: ./dub test -a x86_64 --compiler gdc-12
- name: Optimized unittest
run: ./dub test -a x86_64 --compiler gdc-12 -b unittest-release
- name: Unittest with unittest-inst configuration
run: ./dub test -a x86_64 --compiler gdc-12 -b unittest-inst
- name: Unittest with unittest-release-inst configuration
run: ./dub test -a x86_64 --compiler gdc-12 -b unittest-release-inst