Skip to content

Remove AppVeyor CI

Remove AppVeyor CI #27

Workflow file for this run

name: Main
on:
- pull_request # without merge conflicts
- push # branch or tag
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
dc: [ dmd-latest, ldc-latest ]
model: [ 32, 64 ]
name: ${{ matrix.os }}, ${{ matrix.dc }}, MODEL=${{ matrix.model }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
env:
DMD: ${{ startsWith(matrix.dc, 'ldc') && 'ldmd2' || 'dmd' }}
MODEL: ${{ matrix.model }}
steps:
- uses: actions/checkout@v4
- name: Install D compiler
uses: dlang-community/[email protected]
with:
compiler: ${{ matrix.dc }}
- name: Build
shell: bash
run: make -j3 DMD=$DMD
- name: Test
shell: bash
# /tmp is a symlink on Mac, and rdmd_test.d doesn't like it
run: ${{ startsWith(matrix.os, 'macos') && 'TMPDIR=$(cd /tmp && pwd -P)' || '' }} make -j3 DMD=$DMD test