Skip to content

Add .iocsh_history to .gitignore #87

Add .iocsh_history to .gitignore

Add .iocsh_history to .gitignore #87

# OPCUA CI build using EPICS ci-scripts
# (see: https://github.com/epics-base/ci-scripts)
# Unified Automation SDK client library - Windows builds
# ======================================================
# This is YAML - indentation levels are crucial
# Set the 'name:' properties to values that work for you
name: UA SDK Windows build
# Trigger on pushes and PRs to any branch
on:
push:
paths-ignore:
- 'documentation/*'
- '**/*.html'
- '**/*.md'
- 'devOpcuaSup/open62541/*'
pull_request:
workflow_dispatch:
env:
SETUP_PATH: .ci-local:.ci
MODULES: "gtest"
GTEST: "v1.0.1"
BASE_HOOK: ".ci-local/base.patch"
BASE_RECURSIVE: NO
encrypted_178ee45b7f75_pass: ${{ secrets.encrypted_178ee45b7f75_pass }}
jobs:
build-msvc:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
# Set environment variables from matrix parameters
env:
CMP: ${{ matrix.cmp }}
BCFG: ${{ matrix.configuration }}
BASE: ${{ matrix.base }}
UASDK: ${{ matrix.uasdk }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-2022
cmp: vs2022
configuration: default
base: "3.15"
uasdk: "1.6.3"
name: "3.15 Win2022 v1.6.3 VS2022 DLL"
- os: windows-2022
cmp: vs2022
configuration: default
base: "7.0"
uasdk: "1.6.3"
name: "7.0 Win2022 v1.6.3 VS2022 DLL"
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Download and install UASDK client
run: |
python3 .ci-local/install-sdk.py
- name: Prepare build dependencies
run: |
python3 .ci/cue.py prepare
- name: Add DLL locations to PATH
run: |
"C:/Users/runneradmin/.source/sdk/bin" | Out-File -FilePath $env:GITHUB_PATH -Append
"C:/Users/runneradmin/.source/sdk/third-party/win64/vs2015/libxml2/out32dll" | Out-File -FilePath $env:GITHUB_PATH -Append
"C:/Users/runneradmin/.source/sdk/third-party/win64/vs2015/openssl/out32dll" | Out-File -FilePath $env:GITHUB_PATH -Append
- name: Build main module
run: python3 .ci/cue.py build
- name: Run main module tests
run: python3 .ci/cue.py test
- name: Collect and show test results
run: python3 .ci/cue.py test-results