Skip to content

Bump package lists #110

Bump package lists

Bump package lists #110

Workflow file for this run

name: Test personal computer (PC) backend
on:
push:
branches:
- main
- v*
- feature-*
tags:
- v*
# ... or trigger manually from GitHub web interface
workflow_dispatch:
jobs:
setup-windows:
strategy:
fail-fast: true
matrix:
dkml_host_abi:
- windows_x86
- windows_x86_64
runs-on: windows-2019
name: build / ${{ matrix.dkml_host_abi }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.ps1
run: test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.ps1
setup-linux:
strategy:
fail-fast: true
matrix:
dkml_host_abi:
- linux_x86_64
runs-on: ubuntu-latest
name: build / ${{ matrix.dkml_host_abi }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.sh
run: sh test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.sh
setup-macos:
strategy:
fail-fast: true
matrix:
dkml_host_abi:
- darwin_x86_64
runs-on: macos-latest
name: build / ${{ matrix.dkml_host_abi }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.sh
run: sh test/pc/setup-dkml-${{ matrix.dkml_host_abi }}.sh