Skip to content

Implement various default mutable sequence function variants #401

Implement various default mutable sequence function variants

Implement various default mutable sequence function variants #401

Workflow file for this run

name: Windows (x32)
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Bind MSVC problem matcher
uses: ammaraskar/msvc-problem-matcher@master
- name: Make
run: msbuild /m /p:Configuration=Debug-MSVC /p:Platform=Win32 .vs\deemon-v142.sln
- name: Test
run: ${{ github.workspace }}\deemon.exe util\test.dee
- name: Prepare lib folder for artifact
shell: bash
run: |
find "lib" -name '*.dec' -delete
find "lib" -name '.gitignore' -delete
unlink lib/LANGUAGE.txt || true
- name: Save executable as artifact
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ github.sha }}-build-x32
if-no-files-found: ignore
path: |
deemon.*
lib