Skip to content

simplify build steps #7

simplify build steps

simplify build steps #7

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- pk-actions
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Hello World
run: echo "Hello, World!"
env:
python_bld_ver: 3.9
ubuntu_bld: ubuntu-20.04
mac_bld: macOS-13
windows_bld: windows-2022
ubuntu_test: ubuntu-latest
mac_test: macOS-latest
windows_test: windows-latest
jobs:

Check failure on line 30 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
bld:
strategy:
matrix:
include:
- name: linux_release_64
image: ${{ env.ubuntu_bld }}
asm: "-asm"
options: "-release_64"
artifact_name: "libebm_ubuntu_release_64"
- name: linux_debug_64
image: ${{ env.ubuntu_bld }}
asm: ""
options: "-debug_64"
artifact_name: "libebm_ubuntu_debug_64"
- name: mac_release_64
image: ${{ env.mac_bld }}
asm: "-asm"
options: "-release_64"
artifact_name: "libebm_mac_release_64"
- name: mac_debug_64
image: ${{ env.mac_bld }}
asm: ""
options: "-debug_64"
artifact_name: "libebm_mac_debug_64"
- name: mac_release_arm
image: macOS-13-arm64
asm: "-asm"
options: "-release_arm"
artifact_name: "libebm_mac_release_arm"
- name: mac_debug_arm
image: macOS-13-arm64
asm: ""
options: "-debug_arm"
artifact_name: "libebm_mac_debug_arm"
- name: win_release_64
image: ${{ env.windows_bld }}
asm: ""
options: "-release_64"
artifact_name: "libebm_win_release_64"
- name: win_debug_64
image: ${{ env.windows_bld }}
asm: ""
options: "-debug_64"
artifact_name: "libebm_win_debug_64"
runs-on: ${{ matrix.image }}
steps:
- name: Check out repository
uses: actions/checkout@v2