Skip to content

generating items

generating items #12

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
Windows:
name: windows-${{ matrix.os-version }}-${{ matrix.build-config }}-${{ matrix.build-arch }}
runs-on: windows-${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os-version: [2019]
build-config: [debug, relwithdebinfo]
build-arch: [x64]
steps:
- name: Versions
shell: bash
run: |
cmake --version
git --version
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure
shell: bash
run: |
mkdir build
cd build
cmake -A${{ matrix.build-arch }} -DCMAKE_BUILD_TYPE=${{ matrix.build-config }} ..
- name: Build
shell: bash
run: |
cd build
cmake --build . --config ${{ matrix.build-config }}
- name: Run
shell: bash
run: |
cd build/result/${{ matrix.build-config }}
./dntgenerator.exe
Ubuntu:
name: ubuntu-${{ matrix.os-version }}-${{ matrix.build-config }}-${{ matrix.compiler.cc }}
runs-on: ubuntu-${{ matrix.os-version }}.04
env:
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
strategy:
fail-fast: false
matrix:
os-version: [22]
build-config: [debug, relwithdebinfo]
compiler:
- {
cc: gcc-12,
cxx: g++-12,
install: gcc-12 g++-12
}
steps:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install -y xorg-dev nasm ${{ matrix.compiler.install }}
- name: Versions
run: |
cmake --version
${{ matrix.compiler.cc }} --version
${{ matrix.compiler.cxx }} --version
git --version
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-config }} ..
- name: Build
run: |
cd build
cmake --build . --config ${{ matrix.build-config }} -- -j3
- name: Run
shell: bash
run: |
cd build/result/${{ matrix.build-config }}
./dntgenerator