Bump version #106
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: wgpu-d CI | |
on: push | |
# schedule: | |
# - cron: '0 0 * * SUN' | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ldc-1.35.0-beta1 | |
# - name: Install *nix Dependencies | |
# if: runner.os == 'Linux' | |
# run: sudo apt-get install --quiet -y libglfw3 libglfw3-dev | |
- name: Lint | |
run: dub lint | |
# - name: Integration Test | |
# run: make headless | |
- name: Test | |
run: env LD_LIBRARY_PATH=lib make cover | |
- name: Upload Coverage to Codecov | |
if: success() | |
run: bash <(curl -s https://codecov.io/bash) | |
# - name: Upload Test Log Artifact on Failure | |
# uses: actions/upload-artifact@v1 | |
# if: failure() | |
# with: | |
# name: Linux_Meson_Testlog | |
# path: build/meson-logs/testlog.txt |