IACore v1.2
This commit is contained in:
31
.github/workflows/ci.yaml
vendored
Normal file
31
.github/workflows/ci.yaml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
build-linux-and-wasm:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: read
|
||||
container:
|
||||
image: ghcr.io/i-a-s/iabuild-env:latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: [x64-linux]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install OpenSSL v3 (System)
|
||||
run: sudo dnf install -y openssl-devel
|
||||
|
||||
- name: Configure
|
||||
run: cmake --preset ${{ matrix.target }}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset ${{ matrix.target }} --config Release
|
||||
Reference in New Issue
Block a user