Skip to content

Версия 3.4

Версия 3.4 #93

Workflow file for this run

name: CI-windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
bootstrap-bat:
strategy:
matrix:
ccomp: [ msvc32, msvc64, gcc ]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Check free space
run: |
dir
shell: cmd
- name: Bootstrapping with ${{ matrix.ccomp }}
run: |
copy .github\workflows\conf-template-${{ matrix.ccomp }}.bat c-plus-plus.conf.bat
bootstrap.bat
shell: cmd
- uses: actions/upload-artifact@v3
if: failure()
with:
name: log-info-windows
path: |
autotests\__error.txt
autotests\__dump.txt
autotests\__log.txt
autotests\__dump_rlc-core.txt
autotests\any-random-test
autotests\positive-random-test
bin
retention-days: 5
- name: Bootstrapping with ${{ matrix.ccomp }} and -OiADPRS
run: |
copy .github\workflows\conf-template-${{ matrix.ccomp }}.bat c-plus-plus.conf.bat
set RLMAKE_FLAGS=-X-OiADPRS
bootstrap.bat --no-tests
shell: cmd