Skip to content

Add GitHub CI build #29

Add GitHub CI build

Add GitHub CI build #29

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-x64-windows-webkit:
name: Build x64-windows-webkit
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
# Download the latest vcpkg locally
- name: Checkout vcpkg
run: git clone --depth 1 https://github.com/microsoft/vcpkg.git ../vcpkg
- name: Install vcpkg
run: ./Install-Vcpkg.ps1 -vcpkgPath ../vcpkg
- name: Version information of vcpkg
id: vcpkg
run: ./vcpkg.exe version
# Build the individual ports
#
# The ordering corresponds to `WindowsRequirements.json`. Build of a port
# is conditional on its dependencies
- name: Build libressl
id: libressl
if: steps.vcpkg.outcome == 'success'
continue-on-error: true
run: ./vcpkg.exe install libressl[tools] --overlay-triplets ./triplets --triplet x64-windows-webkit
- name: Read libressl config
if: steps.libressl.outcome == 'success' || steps.libressl.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/libressl/config-x64-windows-webkit-out.log
- name: Read libressl debug build log
if: steps.libressl.outcome == 'success' || steps.libressl.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/libressl/install-x64-windows-webkit-dbg-out.log
- name: Read libressl release build log
if: steps.libressl.outcome == 'success' || steps.libressl.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/libressl/install-x64-windows-webkit-rel-out.log
- name: Build ngtcp2
id: ngtcp2
if: steps.libressl.outcome == 'success'
continue-on-error: true
run: ./vcpkg.exe install ngtcp2[libressl] --overlay-triplets ./triplets --triplet x64-windows-webkit
- name: Read ngtcp2 config
if: steps.ngtcp2.outcome == 'success' || steps.ngtcp2.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/ngtcp2/config-x64-windows-webkit-out.log
- name: Read ngtcp2 debug build log
if: steps.ngtcp2.outcome == 'success' || steps.ngtcp2.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/ngtcp2/install-x64-windows-webkit-dbg-out.log
- name: Read ngtcp2 release build log
if: steps.ngtcp2.outcome == 'success' || steps.ngtcp2.outcome == 'failure'
continue-on-error: true
run: Get-Content ./buildtrees/ngtcp2/install-x64-windows-webkit-rel-out.log
- name: Build verification
if: steps.ngtcp2.outcome == 'falure'
run: exit 1