Compare commits
87 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5764601630 | ||
|
|
0c2f903516 | ||
|
|
822293de04 | ||
|
|
6702a8a19c | ||
|
|
7c29683ad5 | ||
|
|
2bcd84a01c | ||
|
|
c6df7df2bd | ||
|
|
8bf77eba0c | ||
|
|
5b123f4e88 | ||
|
|
349eb9434d | ||
|
|
2464284271 | ||
|
|
13b7f097c1 | ||
|
|
2464f82ce6 | ||
|
|
9a94f4712b | ||
|
|
028b752cb2 | ||
|
|
3db08b5977 | ||
|
|
99057a5ff6 | ||
|
|
c734d558c2 | ||
|
|
b047a6c641 | ||
|
|
9183238f9d | ||
|
|
3ff483a1bb | ||
|
|
495f8622cd | ||
|
|
e7b1214d09 | ||
|
|
2016cb2ae7 | ||
|
|
cef930dd06 | ||
|
|
fa2a1e1d39 | ||
|
|
aa25701c58 | ||
|
|
5d7e82256c | ||
|
|
ad8dd4a136 | ||
|
|
fe8a9f5953 | ||
|
|
7d9d426629 | ||
|
|
2929ee2a03 | ||
|
|
1a227516c5 | ||
|
|
bfb9f77db8 | ||
|
|
12a0656fd2 | ||
|
|
984fa5e355 | ||
|
|
43e52b5f6f | ||
|
|
3c1cf15dac | ||
|
|
506af3932d | ||
|
|
85a34ceefb | ||
|
|
705f50449e | ||
|
|
d6136de065 | ||
|
|
33cac7c965 | ||
|
|
1c748ae291 | ||
|
|
7744772be6 | ||
|
|
682f92941d | ||
|
|
032ef83502 | ||
|
|
cfd8a88488 | ||
|
|
54a104e0a6 | ||
|
|
884d017650 | ||
|
|
fd71e94dd4 | ||
|
|
eb5edd3055 | ||
|
|
87942a7c29 | ||
|
|
0bf7d23a6f | ||
|
|
b592ab053c | ||
|
|
e10326b129 | ||
|
|
bd7612dcab | ||
|
|
1b066feacc | ||
|
|
ee362d84aa | ||
|
|
9942f81988 | ||
|
|
ce99ab4e52 | ||
|
|
08d2f23295 | ||
|
|
a439d7aa64 | ||
|
|
6eefee8d18 | ||
|
|
c7a134e1fb | ||
|
|
ba5173a494 | ||
|
|
b568ca982b | ||
|
|
04f99fe6c4 | ||
|
|
0b54ff61c4 | ||
|
|
074a7ab617 | ||
|
|
5a0acc2228 | ||
|
|
1c0f786eeb | ||
|
|
4b76e0623d | ||
|
|
e8508cb658 | ||
|
|
388cc57533 | ||
|
|
5beeada73f | ||
|
|
348a7dc851 | ||
|
|
ab52808c63 | ||
|
|
3a99f3c9d6 | ||
|
|
6c645363b3 | ||
|
|
2dbd777852 | ||
|
|
576b5a4caf | ||
|
|
031a756941 | ||
|
|
f324cd3bdd | ||
|
|
0ba02c5b03 | ||
|
|
b0c910c1cc | ||
|
|
59304f83c2 |
@@ -37,6 +37,7 @@ skip_commits:
|
|||||||
- '**/*.html'
|
- '**/*.html'
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
- '.travis.yml'
|
- '.travis.yml'
|
||||||
|
- '.github/workflows/*'
|
||||||
|
|
||||||
#---------------------------------#
|
#---------------------------------#
|
||||||
# additional packages #
|
# additional packages #
|
||||||
@@ -147,7 +148,7 @@ build_script:
|
|||||||
- cmd: python cue.py build
|
- cmd: python cue.py build
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- cmd: python cue.py test
|
- cmd: python cue.py -T 15M test
|
||||||
- cmd: python cue.py test-results
|
- cmd: python cue.py test-results
|
||||||
|
|
||||||
#---------------------------------#
|
#---------------------------------#
|
||||||
|
|||||||
186
.github/workflows/build-and-test.yml
vendored
Normal file
186
.github/workflows/build-and-test.yml
vendored
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
name: ci-scripts build/test
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
env:
|
||||||
|
SETUP_PATH: .:.ci
|
||||||
|
SET: test01
|
||||||
|
VV: 1
|
||||||
|
BASE_RECURSIVE: NO
|
||||||
|
CMP: gcc
|
||||||
|
APT: re2c
|
||||||
|
CHOCO: re2c
|
||||||
|
BREW: re2c
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
unit-test:
|
||||||
|
name: Unit tests on ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-2019, windows-2016, macos-10.15]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Show initial environment
|
||||||
|
run: python cue-test.py env
|
||||||
|
- name: Run unit tests
|
||||||
|
run: python cue-test.py
|
||||||
|
|
||||||
|
build-linux:
|
||||||
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04]
|
||||||
|
cmp: [gcc, clang]
|
||||||
|
configuration: [default, static, debug, static-debug]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
|
|
||||||
|
build-linux-old:
|
||||||
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-16.04]
|
||||||
|
cmp: ["gcc-4.8", "gcc-4.9"]
|
||||||
|
configuration: [default, static]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: "apt-get install ${{ matrix.cmp }}"
|
||||||
|
run: |
|
||||||
|
export GCC_NAME="${{ matrix.cmp }}"
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install software-properties-common
|
||||||
|
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install g++-${GCC_NAME#gcc-}
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
|
|
||||||
|
build-macos:
|
||||||
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [macos-10.15]
|
||||||
|
cmp: [clang]
|
||||||
|
configuration: [default, debug]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [windows-2019, windows-2016]
|
||||||
|
cmp: [gcc, vs2019, vs2017]
|
||||||
|
configuration: [default, static, debug, static-debug]
|
||||||
|
exclude:
|
||||||
|
- os: windows-2019
|
||||||
|
cmp: vs2017
|
||||||
|
- os: windows-2016
|
||||||
|
cmp: vs2019
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
|
|
||||||
|
build-rtems:
|
||||||
|
name: RTEMS${{ matrix.rtems }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
RTEMS: ${{ matrix.rtems }}
|
||||||
|
RTEMS_TARGET: RTEMS-pc686-qemu
|
||||||
|
APT: re2c g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04]
|
||||||
|
cmp: [gcc]
|
||||||
|
configuration: [default, debug]
|
||||||
|
rtems: ["4.9", "4.10", "5"]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
|
|
||||||
|
build-wine:
|
||||||
|
name: WINE${{ matrix.wine }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
WINE: ${{ matrix.wine }}
|
||||||
|
APT: re2c g++-mingw-w64-i686 g++-mingw-w64-x86-64
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-18.04]
|
||||||
|
cmp: [gcc]
|
||||||
|
configuration: [default, static, debug, static-debug]
|
||||||
|
wine: [32, 64]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python cue.py prepare
|
||||||
|
- name: Build main module (example app)
|
||||||
|
run: python cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python cue.py -T 15M test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python cue.py test-results
|
||||||
180
.gitlab-ci.yml
Normal file
180
.gitlab-ci.yml
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
# .gitlab-ci.yml for testing EPICS Base ci-scripts
|
||||||
|
# (see: https://github.com/epics-base/ci-scripts)
|
||||||
|
|
||||||
|
# Note:
|
||||||
|
# Paths to scripts are different in this test configuration
|
||||||
|
# (your module has one more directory level: .ci)
|
||||||
|
|
||||||
|
image: ubuntu:bionic
|
||||||
|
|
||||||
|
cache:
|
||||||
|
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
||||||
|
paths:
|
||||||
|
- .cache/
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: "recursive"
|
||||||
|
SETUP_PATH: ".:.ci"
|
||||||
|
BASE_RECURSIVE: "NO"
|
||||||
|
APT: "libreadline6-dev libncurses5-dev perl clang g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86 re2c"
|
||||||
|
DEBIAN_FRONTEND: "noninteractive"
|
||||||
|
CMP: "gcc"
|
||||||
|
BGFC: "default"
|
||||||
|
VV: "1"
|
||||||
|
SET: test01
|
||||||
|
|
||||||
|
# Unit tests
|
||||||
|
unit_test:
|
||||||
|
stage: build
|
||||||
|
variables:
|
||||||
|
SET: test00
|
||||||
|
before_script:
|
||||||
|
- apt-get update -qq && apt-get install -y -qq make git python curl p7zip-full
|
||||||
|
- python cue-test.py env
|
||||||
|
script:
|
||||||
|
- python cue-test.py
|
||||||
|
|
||||||
|
# Template job for test builds (hidden)
|
||||||
|
.build:
|
||||||
|
stage: build
|
||||||
|
before_script:
|
||||||
|
- apt-get update -qq && apt-get install -y -qq build-essential git python curl p7zip-full
|
||||||
|
- python cue.py prepare
|
||||||
|
script:
|
||||||
|
- python cue.py build
|
||||||
|
- python cue.py test
|
||||||
|
- python cue.py test-results
|
||||||
|
|
||||||
|
# gcc builds using four configurations (shared/static, optimized/debug)
|
||||||
|
gcc_default:
|
||||||
|
extends: .build
|
||||||
|
|
||||||
|
gcc_static:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BCFG: "static"
|
||||||
|
|
||||||
|
gcc_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
gcc_static_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BCFG: "static-debug"
|
||||||
|
|
||||||
|
# clang builds using four configurations (shared/static, optimized/debug)
|
||||||
|
clang_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
CMP: "clang"
|
||||||
|
|
||||||
|
clang_static:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
CMP: "clang"
|
||||||
|
BCFG: "static"
|
||||||
|
|
||||||
|
clang_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
CMP: "clang"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
clang_static_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
CMP: "clang"
|
||||||
|
BCFG: "static-debug"
|
||||||
|
|
||||||
|
# WINE based cross-builds to Windows 32bit and 64bit
|
||||||
|
wine32_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "32"
|
||||||
|
|
||||||
|
wine32_static:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "32"
|
||||||
|
BCFG: "static"
|
||||||
|
|
||||||
|
wine32_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "32"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
wine32_static_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "32"
|
||||||
|
BCFG: "static-debug"
|
||||||
|
|
||||||
|
wine64_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "64"
|
||||||
|
|
||||||
|
wine64_static:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "64"
|
||||||
|
BCFG: "static"
|
||||||
|
|
||||||
|
wine64_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "64"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
wine64_static_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
WINE: "64"
|
||||||
|
BCFG: "static-debug"
|
||||||
|
|
||||||
|
# Cross-builds to RTEMS 4.9 and 4.10
|
||||||
|
rtems4.9_default:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.9"
|
||||||
|
BASE: "3.15"
|
||||||
|
|
||||||
|
rtems4.9_debug:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.9"
|
||||||
|
BASE: "3.15"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
rtems4.10_default:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.10"
|
||||||
|
|
||||||
|
rtems4.10_debug:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.10"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
rtems5_default:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "5"
|
||||||
|
RTEMS_TARGET: "RTEMS-pc686-qemu"
|
||||||
|
|
||||||
|
rtems5_debug:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "5"
|
||||||
|
RTEMS_TARGET: "RTEMS-pc686-qemu"
|
||||||
|
BCFG: "debug"
|
||||||
29
.travis.yml
29
.travis.yml
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
dist: xenial
|
dist: bionic
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
@@ -30,10 +30,11 @@ addons:
|
|||||||
- g++-mingw-w64-i686
|
- g++-mingw-w64-i686
|
||||||
- g++-mingw-w64-x86-64
|
- g++-mingw-w64-x86-64
|
||||||
- qemu-system-x86
|
- qemu-system-x86
|
||||||
|
- p7zip-full
|
||||||
homebrew:
|
homebrew:
|
||||||
packages:
|
packages:
|
||||||
- re2c
|
- re2c
|
||||||
update: true
|
- p7zip
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- python cue.py prepare
|
- python cue.py prepare
|
||||||
@@ -82,6 +83,7 @@ jobs:
|
|||||||
|
|
||||||
- env: SET=test00
|
- env: SET=test00
|
||||||
os: osx
|
os: osx
|
||||||
|
osx_image: xcode11.3
|
||||||
install: python cue-test.py env
|
install: python cue-test.py env
|
||||||
script: python cue-test.py
|
script: python cue-test.py
|
||||||
|
|
||||||
@@ -93,10 +95,10 @@ jobs:
|
|||||||
# Compile example
|
# Compile example
|
||||||
|
|
||||||
- env: SET=test01
|
- env: SET=test01
|
||||||
dist: bionic
|
dist: focal
|
||||||
|
|
||||||
- env: SET=test01 BCFG=static-debug
|
- env: SET=test01 BCFG=static-debug
|
||||||
dist: bionic
|
dist: focal
|
||||||
|
|
||||||
- env: SET=test01 CLEAN_DEPS=NO
|
- env: SET=test01 CLEAN_DEPS=NO
|
||||||
dist: trusty
|
dist: trusty
|
||||||
@@ -120,6 +122,7 @@ jobs:
|
|||||||
compiler: clang
|
compiler: clang
|
||||||
|
|
||||||
- os: osx
|
- os: osx
|
||||||
|
osx_image: xcode11.3
|
||||||
env:
|
env:
|
||||||
- SET=test01
|
- SET=test01
|
||||||
- EXTRA=CMD_CFLAGS="-mmacosx-version-min=10.7"
|
- EXTRA=CMD_CFLAGS="-mmacosx-version-min=10.7"
|
||||||
@@ -129,6 +132,7 @@ jobs:
|
|||||||
|
|
||||||
- env: SET=test01 BCFG=debug
|
- env: SET=test01 BCFG=debug
|
||||||
os: osx
|
os: osx
|
||||||
|
osx_image: xcode11.3
|
||||||
compiler: clang
|
compiler: clang
|
||||||
|
|
||||||
- env: SET=test01 WINE=32 TEST=NO
|
- env: SET=test01 WINE=32 TEST=NO
|
||||||
@@ -141,15 +145,16 @@ jobs:
|
|||||||
- env: SET=test01 WINE=64 TEST=NO BCFG=debug
|
- env: SET=test01 WINE=64 TEST=NO BCFG=debug
|
||||||
- env: SET=test01 WINE=64 TEST=NO BCFG=static-debug
|
- env: SET=test01 WINE=64 TEST=NO BCFG=static-debug
|
||||||
|
|
||||||
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO
|
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO APT=usrmerge
|
||||||
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO BCFG=static
|
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO BCFG=debug APT=usrmerge
|
||||||
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO BCFG=debug
|
|
||||||
- env: SET=test01 RTEMS=4.9 BASE=3.15 TEST=NO BCFG=static-debug
|
|
||||||
|
|
||||||
- env: SET=test01 RTEMS=4.10
|
- env: SET=test01 RTEMS=4.10 APT=usrmerge
|
||||||
- env: SET=test01 RTEMS=4.10 BCFG=static
|
- env: SET=test01 RTEMS=4.10 BCFG=debug APT=usrmerge
|
||||||
- env: SET=test01 RTEMS=4.10 BCFG=debug
|
|
||||||
- env: SET=test01 RTEMS=4.10 BCFG=static-debug
|
- env: SET=test01 RTEMS=5 RTEMS_TARGET=RTEMS-pc686-qemu
|
||||||
|
dist: focal
|
||||||
|
- env: SET=test01 RTEMS=5 RTEMS_TARGET=RTEMS-pc686-qemu BCFG=debug
|
||||||
|
dist: focal
|
||||||
|
|
||||||
- env: SET=test01
|
- env: SET=test01
|
||||||
os: windows
|
os: windows
|
||||||
|
|||||||
123
README.md
123
README.md
@@ -1,6 +1,8 @@
|
|||||||
<a target="_blank" href="http://semver.org">![Version][badge.version]</a>
|
<a target="_blank" href="http://semver.org">![Version][badge.version]</a>
|
||||||
<a target="_blank" href="https://travis-ci.org/epics-base/ci-scripts">![Travis status][badge.travis]</a>
|
<a target="_blank" href="https://travis-ci.org/epics-base/ci-scripts">![Travis status][badge.travis]</a>
|
||||||
<a target="_blank" href="https://ci.appveyor.com/project/epics-base/ci-scripts">![AppVeyor status][badge.appveyor]</a>
|
<a target="_blank" href="https://ci.appveyor.com/project/epics-base/ci-scripts">![AppVeyor status][badge.appveyor]</a>
|
||||||
|
<a target="_blank" href="https://github.com/epics-base/ci-scripts/actions">![GitHub Actions status][badge.gh-actions]</a>
|
||||||
|
<a target="_blank" href="https://gitlab.com/epics-base/ci-scripts/-/pipelines">![GitLab CI/CD status][badge.gitlab]</a>
|
||||||
|
|
||||||
# Continuous Integration for EPICS Modules
|
# Continuous Integration for EPICS Modules
|
||||||
|
|
||||||
@@ -56,14 +58,23 @@ levels as the example files.
|
|||||||
|
|
||||||
## Supported CI Services
|
## Supported CI Services
|
||||||
|
|
||||||
|
The listed properties and instructions for the CI services apply to
|
||||||
|
their free tiers for open source projects, hosted in the cloud on
|
||||||
|
their infrastructure.
|
||||||
|
|
||||||
|
The companies behind these services also offer "enterprise" installations
|
||||||
|
on customer infrastructure, which will have different performance
|
||||||
|
and limitations.
|
||||||
|
|
||||||
### [Travis-CI](https://travis-ci.org/)
|
### [Travis-CI](https://travis-ci.org/)
|
||||||
- Five parallel runners on Linux/Windows (one runner on MacOS)
|
- Two parallel runners on Linux/Windows (two runners on MacOS)
|
||||||
- Use different compilers (gcc, clang)
|
- Ubuntu 14/16/18/20, MacOS 10.13/14/15, Windows Server v1809
|
||||||
- Use different gcc versions
|
- Compile natively on Linux (different versions of gcc, clang)
|
||||||
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
|
||||||
- Cross-compile for RTEMS 4.9 and 4.10 (Base >= 3.15)
|
|
||||||
- Compile natively on MacOS (clang)
|
- Compile natively on MacOS (clang)
|
||||||
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017)
|
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017)
|
||||||
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
- Built dependencies are cached (for faster builds).
|
- Built dependencies are cached (for faster builds).
|
||||||
|
|
||||||
See specific
|
See specific
|
||||||
@@ -72,8 +83,8 @@ for more details.
|
|||||||
|
|
||||||
### [AppVeyor](https://www.appveyor.com/)
|
### [AppVeyor](https://www.appveyor.com/)
|
||||||
- One parallel runner (all builds are sequential)
|
- One parallel runner (all builds are sequential)
|
||||||
- Use different compilers (Visual Studio, gcc/MinGW)
|
- Windows Server 2012/2016/2019
|
||||||
- Use different Visual Studio versions: \
|
- Compile using gcc/MinGW or different Visual Studio versions: \
|
||||||
2008, 2010, 2012, 2013, 2015, 2017, 2019
|
2008, 2010, 2012, 2013, 2015, 2017, 2019
|
||||||
- Compile for Windows 32bit and 64bit
|
- Compile for Windows 32bit and 64bit
|
||||||
- No useful caching available.
|
- No useful caching available.
|
||||||
@@ -82,15 +93,46 @@ See specific
|
|||||||
**[ci-scripts on AppVeyor README](appveyor/README.md)**
|
**[ci-scripts on AppVeyor README](appveyor/README.md)**
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
|
### [GitHub Actions](https://github.com/)
|
||||||
|
- 20 parallel runners on Linux/Windows (5 runners on MacOS)
|
||||||
|
- Ubuntu 16/18/20, MacOS 10.15, Windows Server 2016/2019
|
||||||
|
- Compile natively on Linux (gcc, clang)
|
||||||
|
- Compile natively on MacOS (clang)
|
||||||
|
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017 & 2019)
|
||||||
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
|
- Caching not supported by ci-scripts yet.
|
||||||
|
|
||||||
|
See specific
|
||||||
|
**[ci-scripts on GitHub Actions README](github-actions/README.md)**
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
### [GitLab CI/CD](https://gitlab.com/)
|
||||||
|
|
||||||
|
- Docker-based runners on Linux (one VM instance per job)
|
||||||
|
- Can use any Docker image from Dockerhub (the examples use
|
||||||
|
`ubuntu:bionic`)
|
||||||
|
- Compile natively using different compilers (gcc, clang)
|
||||||
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
|
- Built dependencies are cached (for faster builds).
|
||||||
|
|
||||||
|
See specific
|
||||||
|
**[ci-scripts on GitLab CI/CD README](gitlab/README.md)**
|
||||||
|
for more details.
|
||||||
|
|
||||||
## How to Use the CI-Scripts
|
## How to Use the CI-Scripts
|
||||||
|
|
||||||
1. Get an account on a supported CI service provider platform.
|
1. Get an account on a supported CI service provider platform
|
||||||
(e.g. [Travis-CI](https://travis-ci.org/),
|
(e.g. [Travis-CI](https://travis-ci.org/),
|
||||||
[AppVeyor](https://www.appveyor.com/), ...)
|
[AppVeyor](https://www.appveyor.com/), ...).
|
||||||
|
GitHub Actions does not require a separate account.
|
||||||
|
|
||||||
(More details in the specific README of the subdirectory.)
|
(More details in the specific README of the subdirectory.)
|
||||||
|
|
||||||
2. In your Support Module, add this ci-scripts repository
|
2. In your module, add this ci-scripts repository
|
||||||
as a Git Submodule (name suggestion: `.ci`).
|
as a Git Submodule (name suggestion: `.ci`).
|
||||||
```bash
|
```bash
|
||||||
git submodule add https://github.com/epics-base/ci-scripts .ci
|
git submodule add https://github.com/epics-base/ci-scripts .ci
|
||||||
@@ -225,10 +267,11 @@ recursing into submodules. [default is including submodules: `YES`]
|
|||||||
be always be extended by the release or branch name as `<name>-<version>`.
|
be always be extended by the release or branch name as `<name>-<version>`.
|
||||||
[default is the slug in lower case: `foo`]
|
[default is the slug in lower case: `foo`]
|
||||||
|
|
||||||
`FOO_HOOK=<script>` Set the name of a script that will be run after cloning
|
`FOO_HOOK=<hook>` Set the name of a `.patch` file, a `.zip` or `.7z` archive
|
||||||
the module, before compiling it. Working directory when running the script
|
or a script that will be applied (using `-p1`), extracted or run after cloning
|
||||||
is the root of the targeted module (e.g. `.../.cache/foo-1.2`).
|
the module, before compiling it.
|
||||||
[default: no hooks are run]
|
Working directory is the root of the targeted module,
|
||||||
|
e.g., `.../.cache/foo-1.2`). [default: no hook]
|
||||||
|
|
||||||
`FOO_VARNAME=<name>` Set the name that is used for the module when creating
|
`FOO_VARNAME=<name>` Set the name that is used for the module when creating
|
||||||
the `RELEASE.local` files. [default is the slug in upper case: `FOO`]
|
the `RELEASE.local` files. [default is the slug in upper case: `FOO`]
|
||||||
@@ -238,6 +281,35 @@ that usually it is sufficient to set `FOO=<version>`.
|
|||||||
You can find the list of supported (and tested) modules in `defaults.set`.
|
You can find the list of supported (and tested) modules in `defaults.set`.
|
||||||
Feel free to suggest more default settings using a Pull Request.
|
Feel free to suggest more default settings using a Pull Request.
|
||||||
|
|
||||||
|
## RTEMS
|
||||||
|
|
||||||
|
Setting `RTEMS` to the RTEMS version number (`4.9`, `4.10` or `5`)
|
||||||
|
enables cross-compiling to RTEMS on supported CI services.
|
||||||
|
Tests can also be run cross-platform, using `qemu`.
|
||||||
|
|
||||||
|
The RTEMS 5 builds now include most of the BSPs with configuration in Base:
|
||||||
|
|
||||||
|
- beatnik
|
||||||
|
- gen68360
|
||||||
|
- mcp750
|
||||||
|
- mvme167
|
||||||
|
- mvme2100
|
||||||
|
- mvme3100
|
||||||
|
- pc686 w/ libbsd
|
||||||
|
- qoriq_e500 w/ libbsd
|
||||||
|
- uC5282
|
||||||
|
- xilinx_zynq_a9_qemu w/ libbsd
|
||||||
|
|
||||||
|
Build configuration [can be found here][ref.rtems5build].
|
||||||
|
Set `RTEMS_TARGET` to configure the EPICS target architecture and
|
||||||
|
`RSB_BUILD` to select the RTEMS toolchain release name/data from
|
||||||
|
https://github.com/mdavidsaver/rsb/releases.
|
||||||
|
|
||||||
|
RTEMS 5 builds need to be switched to a newer ubuntu version
|
||||||
|
(aka. **os: ubuntu-20.04** with GitHub Actions,
|
||||||
|
**dist: focal** with Travis-CI or
|
||||||
|
**image: ubuntu:focal** with GitLab CI/CD).
|
||||||
|
|
||||||
## Debugging
|
## Debugging
|
||||||
|
|
||||||
Setting `VV=1` in your service configuration (e.g., `.travis.yml`) for a
|
Setting `VV=1` in your service configuration (e.g., `.travis.yml`) for a
|
||||||
@@ -260,6 +332,8 @@ in the service specific subdirectories:
|
|||||||
|
|
||||||
- [Travis-CI README](travis/README.md)
|
- [Travis-CI README](travis/README.md)
|
||||||
- [AppVeyor README](appveyor/README.md)
|
- [AppVeyor README](appveyor/README.md)
|
||||||
|
- [GitHub Actions README](github-actions/README.md)
|
||||||
|
- [GitLab README](gitlab/README.md)
|
||||||
|
|
||||||
## References: EPICS Modules Using ci-scripts
|
## References: EPICS Modules Using ci-scripts
|
||||||
|
|
||||||
@@ -271,6 +345,8 @@ in the service specific subdirectories:
|
|||||||
|
|
||||||
EPICS Modules:
|
EPICS Modules:
|
||||||
[ASYN](https://github.com/epics-modules/asyn),
|
[ASYN](https://github.com/epics-modules/asyn),
|
||||||
|
[autosave](https://github.com/epics-modules/autosave),
|
||||||
|
[busy](https://github.com/epics-modules/busy),
|
||||||
[devlib2](https://github.com/epics-modules/devlib2),
|
[devlib2](https://github.com/epics-modules/devlib2),
|
||||||
[ecmc](https://github.com/epics-modules/ecmc),
|
[ecmc](https://github.com/epics-modules/ecmc),
|
||||||
[gtest](https://github.com/epics-modules/gtest),
|
[gtest](https://github.com/epics-modules/gtest),
|
||||||
@@ -279,10 +355,14 @@ EPICS Modules:
|
|||||||
[MCoreUtils](https://github.com/epics-modules/MCoreUtils),
|
[MCoreUtils](https://github.com/epics-modules/MCoreUtils),
|
||||||
[modbus](https://github.com/epics-modules/modbus),
|
[modbus](https://github.com/epics-modules/modbus),
|
||||||
[motor](https://github.com/epics-modules/motor),
|
[motor](https://github.com/epics-modules/motor),
|
||||||
|
[mrfioc2](https://github.com/epics-modules/mrfioc2),
|
||||||
[OPCUA](https://github.com/ralphlange/opcua),
|
[OPCUA](https://github.com/ralphlange/opcua),
|
||||||
[PCAS](https://github.com/epics-modules/pcas),
|
[PCAS](https://github.com/epics-modules/pcas),
|
||||||
|
[softGlueZync](https://github.com/epics-modules/softGlueZynq),
|
||||||
[sscan](https://github.com/epics-modules/sscan),
|
[sscan](https://github.com/epics-modules/sscan),
|
||||||
[vac](https://github.com/epics-modules/vac)
|
[std](https://github.com/epics-modules/std),
|
||||||
|
[vac](https://github.com/epics-modules/vac),
|
||||||
|
[xxx](https://github.com/epics-modules/xxx)
|
||||||
|
|
||||||
ESS: [EtherCAT MC Motor Driver][ref.ethercatmc]
|
ESS: [EtherCAT MC Motor Driver][ref.ethercatmc]
|
||||||
|
|
||||||
@@ -342,16 +422,16 @@ This will make all builds (not just for your module) verbose.
|
|||||||
|
|
||||||
Update the submodule in `.ci` first, then change your CI configuration
|
Update the submodule in `.ci` first, then change your CI configuration
|
||||||
(if needed) and commit both to your module. E.g., to update your Travis
|
(if needed) and commit both to your module. E.g., to update your Travis
|
||||||
setup to release 3.0.1 of ci-scripts:
|
setup to release 3.3.0 of ci-scripts:
|
||||||
```bash
|
```bash
|
||||||
cd .ci
|
cd .ci
|
||||||
git pull origin v3.0.1
|
git pull origin v3.3.0
|
||||||
cd -
|
cd -
|
||||||
git add .ci
|
git add .ci
|
||||||
# if needed:
|
# if needed:
|
||||||
edit .travis.yml # and/or .appveyor.yml
|
edit .travis.yml # and/or other CI service configurations
|
||||||
git add .travis.yml
|
git add .travis.yml
|
||||||
git commit -m "Update ci-scripts submodule to v3.0.1"
|
git commit -m "Update ci-scripts submodule to v3.3.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
Check the example configuration files inside ci-scripts (and their
|
Check the example configuration files inside ci-scripts (and their
|
||||||
@@ -402,10 +482,13 @@ This module is distributed subject to a Software License Agreement found
|
|||||||
in file LICENSE that is included with this distribution.
|
in file LICENSE that is included with this distribution.
|
||||||
|
|
||||||
<!-- Links -->
|
<!-- Links -->
|
||||||
[badge.version]: https://badge.fury.io/gh/epics-base%2Fci-scripts.svg
|
[badge.version]: https://img.shields.io/github/v/release/epics-base/ci-scripts?sort=semver
|
||||||
[badge.travis]: https://travis-ci.org/epics-base/ci-scripts.svg?branch=master
|
[badge.travis]: https://travis-ci.org/epics-base/ci-scripts.svg?branch=master
|
||||||
[badge.appveyor]: https://ci.appveyor.com/api/projects/status/8b578alg974axvux?svg=true
|
[badge.appveyor]: https://ci.appveyor.com/api/projects/status/8b578alg974axvux?svg=true
|
||||||
|
[badge.gh-actions]: https://github.com/epics-base/ci-scripts/workflows/ci-scripts%20build/test/badge.svg
|
||||||
|
[badge.gitlab]: https://gitlab.com/epics-base/ci-scripts/badges/master/pipeline.svg
|
||||||
|
|
||||||
[reddit.bash]: https://www.reddit.com/r/bash/comments/393oqv/why_is_the_version_of_bash_included_in_os_x_so_old/
|
[reddit.bash]: https://www.reddit.com/r/bash/comments/393oqv/why_is_the_version_of_bash_included_in_os_x_so_old/
|
||||||
|
|
||||||
[ref.ethercatmc]: https://github.com/EuropeanSpallationSource/m-epics-ethercatmc
|
[ref.ethercatmc]: https://github.com/EuropeanSpallationSource/m-epics-ethercatmc
|
||||||
|
[ref.rtems5build]: https://github.com/mdavidsaver/rsb/blob/3911854462e74838e3e5f33a9e8f936fd0f1d95d/.github/workflows/build-5.yml#L98-L137
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- One parallel runner (all builds are sequential)
|
- One parallel runner (all builds are sequential)
|
||||||
- Use different compilers (Visual Studio, gcc/MinGW)
|
- Windows Server 2012/2016/2019
|
||||||
- Use different Visual Studio versions: \
|
- Compile using gcc/MinGW or different Visual Studio versions: \
|
||||||
2008, 2010, 2012, 2013, 2015, 2017, 2019
|
2008, 2010, 2012, 2013, 2015, 2017, 2019
|
||||||
- Compile for Windows 32bit and 64bit
|
- Compile for Windows 32bit and 64bit
|
||||||
- No useful caching available.
|
- No useful caching available.
|
||||||
@@ -15,6 +15,10 @@
|
|||||||
it to your GitHub account and activate your support module's
|
it to your GitHub account and activate your support module's
|
||||||
repository. For more details, please see below and refer to the
|
repository. For more details, please see below and refer to the
|
||||||
[AppVeyor documentation](https://www.appveyor.com/docs/).
|
[AppVeyor documentation](https://www.appveyor.com/docs/).
|
||||||
|
|
||||||
|
(This applies when using the free tier offered to open source
|
||||||
|
projects. Things will be different using an "Enterprise"
|
||||||
|
installation on customer hardware.)
|
||||||
|
|
||||||
2. Add the ci-scripts respository as a Git Submodule
|
2. Add the ci-scripts respository as a Git Submodule
|
||||||
(see [README](../README.md) one level above).
|
(see [README](../README.md) one level above).
|
||||||
|
|||||||
122
cue-test.py
122
cue-test.py
@@ -22,6 +22,10 @@ if 'TRAVIS' in os.environ:
|
|||||||
ci_service = 'travis'
|
ci_service = 'travis'
|
||||||
ci_os = os.environ['TRAVIS_OS_NAME']
|
ci_os = os.environ['TRAVIS_OS_NAME']
|
||||||
|
|
||||||
|
if 'GITLAB_CI' in os.environ:
|
||||||
|
ci_service = 'gitlab'
|
||||||
|
ci_os = 'linux'
|
||||||
|
|
||||||
if 'APPVEYOR' in os.environ:
|
if 'APPVEYOR' in os.environ:
|
||||||
ci_service = 'appveyor'
|
ci_service = 'appveyor'
|
||||||
if re.match(r'^Visual', os.environ['APPVEYOR_BUILD_WORKER_IMAGE']):
|
if re.match(r'^Visual', os.environ['APPVEYOR_BUILD_WORKER_IMAGE']):
|
||||||
@@ -31,6 +35,13 @@ if 'APPVEYOR' in os.environ:
|
|||||||
elif re.match(r'^macOS', os.environ['APPVEYOR_BUILD_WORKER_IMAGE']):
|
elif re.match(r'^macOS', os.environ['APPVEYOR_BUILD_WORKER_IMAGE']):
|
||||||
ci_os = 'osx'
|
ci_os = 'osx'
|
||||||
|
|
||||||
|
if 'GITHUB_ACTIONS' in os.environ:
|
||||||
|
ci_service = 'github-actions'
|
||||||
|
if os.environ['RUNNER_OS'] == 'macOS':
|
||||||
|
ci_os = 'osx'
|
||||||
|
else:
|
||||||
|
ci_os = os.environ['RUNNER_OS'].lower()
|
||||||
|
|
||||||
|
|
||||||
def find_in_file(regex, filename):
|
def find_in_file(regex, filename):
|
||||||
file = open(filename, "r")
|
file = open(filename, "r")
|
||||||
@@ -111,7 +122,7 @@ class TestSourceSet(unittest.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
class TestUpdateReleaseLocal(unittest.TestCase):
|
class TestUpdateReleaseLocal(unittest.TestCase):
|
||||||
release_local = os.path.join(cue.cachedir, 'RELEASE.local')
|
release_local = os.path.join(cue.ci['cachedir'], 'RELEASE.local')
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
if os.path.exists(self.release_local):
|
if os.path.exists(self.release_local):
|
||||||
@@ -179,16 +190,21 @@ class TestUpdateReleaseLocal(unittest.TestCase):
|
|||||||
|
|
||||||
class TestAddDependencyUpToDateCheck(unittest.TestCase):
|
class TestAddDependencyUpToDateCheck(unittest.TestCase):
|
||||||
hash_3_15_6 = "ce7943fb44beb22b453ddcc0bda5398fadf72096"
|
hash_3_15_6 = "ce7943fb44beb22b453ddcc0bda5398fadf72096"
|
||||||
location = os.path.join(cue.cachedir, 'base-R3.15.6')
|
location = ''
|
||||||
licensefile = os.path.join(location, 'LICENSE')
|
licensefile = ''
|
||||||
checked_file = os.path.join(location, 'checked_out')
|
checked_file = ''
|
||||||
release_file = os.path.join(location, 'configure', 'RELEASE')
|
release_file = ''
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
os.environ['SETUP_PATH'] = '.:appveyor'
|
os.environ['SETUP_PATH'] = '.:appveyor'
|
||||||
|
cue.clear_lists()
|
||||||
|
cue.detect_context()
|
||||||
|
self.location = os.path.join(cue.ci['cachedir'], 'base-R3.15.6')
|
||||||
|
self.licensefile = os.path.join(self.location, 'LICENSE')
|
||||||
|
self.checked_file = os.path.join(self.location, 'checked_out')
|
||||||
|
self.release_file = os.path.join(self.location, 'configure', 'RELEASE')
|
||||||
if os.path.exists(self.location):
|
if os.path.exists(self.location):
|
||||||
shutil.rmtree(self.location, onerror=cue.remove_readonly)
|
shutil.rmtree(self.location, onerror=cue.remove_readonly)
|
||||||
cue.clear_lists()
|
|
||||||
os.chdir(builddir)
|
os.chdir(builddir)
|
||||||
cue.source_set('defaults')
|
cue.source_set('defaults')
|
||||||
cue.complete_setup('BASE')
|
cue.complete_setup('BASE')
|
||||||
@@ -242,15 +258,18 @@ def is_shallow_repo(place):
|
|||||||
|
|
||||||
|
|
||||||
class TestAddDependencyOptions(unittest.TestCase):
|
class TestAddDependencyOptions(unittest.TestCase):
|
||||||
location = os.path.join(cue.cachedir, 'mcoreutils-master')
|
location = ''
|
||||||
testfile = os.path.join(location, '.ci', 'LICENSE')
|
testfile = ''
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
os.environ['SETUP_PATH'] = '.'
|
os.environ['SETUP_PATH'] = '.'
|
||||||
if os.path.exists(cue.cachedir):
|
|
||||||
shutil.rmtree(cue.cachedir, onerror=cue.remove_readonly)
|
|
||||||
cue.clear_lists()
|
cue.clear_lists()
|
||||||
cue.detect_context()
|
cue.detect_context()
|
||||||
|
if os.path.exists(cue.ci['cachedir']):
|
||||||
|
shutil.rmtree(cue.ci['cachedir'], onerror=cue.remove_readonly)
|
||||||
|
self.location = os.path.join(cue.ci['cachedir'], 'mcoreutils-master')
|
||||||
|
self.testfile = os.path.join(self.location, '.ci', 'LICENSE')
|
||||||
|
os.path.join(cue.ci['cachedir'], 'mcoreutils-master')
|
||||||
cue.source_set('defaults')
|
cue.source_set('defaults')
|
||||||
cue.complete_setup('MCoreUtils')
|
cue.complete_setup('MCoreUtils')
|
||||||
cue.setup['MCoreUtils'] = 'master'
|
cue.setup['MCoreUtils'] = 'master'
|
||||||
@@ -281,7 +300,7 @@ class TestAddDependencyOptions(unittest.TestCase):
|
|||||||
def test_AddMsiTo314(self):
|
def test_AddMsiTo314(self):
|
||||||
cue.complete_setup('BASE')
|
cue.complete_setup('BASE')
|
||||||
cue.setup['BASE'] = 'R3.14.12.1'
|
cue.setup['BASE'] = 'R3.14.12.1'
|
||||||
msifile = os.path.join(cue.cachedir, 'base-R3.14.12.1', 'src', 'dbtools', 'msi.c')
|
msifile = os.path.join(cue.ci['cachedir'], 'base-R3.14.12.1', 'src', 'dbtools', 'msi.c')
|
||||||
cue.add_dependency('BASE')
|
cue.add_dependency('BASE')
|
||||||
self.assertTrue(os.path.exists(msifile), 'MSI was not added to Base 3.14')
|
self.assertTrue(os.path.exists(msifile), 'MSI was not added to Base 3.14')
|
||||||
|
|
||||||
@@ -324,8 +343,14 @@ class TestDefaultModuleURLs(unittest.TestCase):
|
|||||||
@unittest.skipIf(ci_os != 'windows', 'VCVars test only applies to windows')
|
@unittest.skipIf(ci_os != 'windows', 'VCVars test only applies to windows')
|
||||||
class TestVCVars(unittest.TestCase):
|
class TestVCVars(unittest.TestCase):
|
||||||
def test_vcvars(self):
|
def test_vcvars(self):
|
||||||
if ci_service == 'appveyor':
|
if ci_service == 'travis':
|
||||||
|
os.environ['TRAVIS_COMPILER'] = 'vs2017'
|
||||||
|
else:
|
||||||
os.environ['CONFIGURATION'] = 'default'
|
os.environ['CONFIGURATION'] = 'default'
|
||||||
|
if ci_service == 'github-actions' and os.environ['IMAGEOS'] == 'win16':
|
||||||
|
os.environ['CMP'] = 'vs2017'
|
||||||
|
else:
|
||||||
|
os.environ['CMP'] = 'vs2019'
|
||||||
cue.detect_context()
|
cue.detect_context()
|
||||||
cue.with_vcvars('env')
|
cue.with_vcvars('env')
|
||||||
|
|
||||||
@@ -676,7 +701,10 @@ class TestSetupForBuild(unittest.TestCase):
|
|||||||
args = Namespace(paths=[])
|
args = Namespace(paths=[])
|
||||||
cue.building_base = True
|
cue.building_base = True
|
||||||
if ci_os == 'windows':
|
if ci_os == 'windows':
|
||||||
sp.check_call(['choco', 'install', 'make'])
|
choco_installs = ['make']
|
||||||
|
if ci_service != 'appveyor':
|
||||||
|
choco_installs.append('strawberryperl')
|
||||||
|
sp.check_call(['choco', 'install', '-ry'] + choco_installs)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
if ci_service == 'appveyor':
|
if ci_service == 'appveyor':
|
||||||
@@ -726,10 +754,10 @@ class TestSetupForBuild(unittest.TestCase):
|
|||||||
|
|
||||||
@unittest.skipIf(ci_os != 'windows', 'HostArchPlatform test only applies to windows')
|
@unittest.skipIf(ci_os != 'windows', 'HostArchPlatform test only applies to windows')
|
||||||
def test_HostArchPlatform(self):
|
def test_HostArchPlatform(self):
|
||||||
if ci_service == 'travis':
|
if ci_service == 'appveyor':
|
||||||
platforms = ['x64']
|
|
||||||
else:
|
|
||||||
platforms = ['x86', 'x64']
|
platforms = ['x86', 'x64']
|
||||||
|
else:
|
||||||
|
platforms = ['x64']
|
||||||
for platform in platforms:
|
for platform in platforms:
|
||||||
for cc in ['vs2019', 'gcc']:
|
for cc in ['vs2019', 'gcc']:
|
||||||
cue.ci['platform'] = platform
|
cue.ci['platform'] = platform
|
||||||
@@ -750,18 +778,17 @@ class TestSetupForBuild(unittest.TestCase):
|
|||||||
self.assertTrue(re.search('-mingw$', os.environ['EPICS_HOST_ARCH']),
|
self.assertTrue(re.search('-mingw$', os.environ['EPICS_HOST_ARCH']),
|
||||||
'EPICS_HOST_ARCH (found {0}) is not -mingw for {1} / {2}'
|
'EPICS_HOST_ARCH (found {0}) is not -mingw for {1} / {2}'
|
||||||
.format(os.environ['EPICS_HOST_ARCH'], cc, platform))
|
.format(os.environ['EPICS_HOST_ARCH'], cc, platform))
|
||||||
pattern = {'x86': 'mingw32', 'x64': 'mingw64'}
|
if ci_service == 'appveyor':
|
||||||
self.assertTrue(re.search(pattern[platform], os.environ['PATH']),
|
pattern = {'x86': 'mingw32', 'x64': 'mingw64'}
|
||||||
'Binary location for {0} not in PATH (found {1})'
|
self.assertTrue(re.search(pattern[platform], os.environ['PATH']),
|
||||||
.format(pattern[platform], os.environ['PATH']))
|
'Binary location for {0} not in PATH (found PATH = {1})'
|
||||||
|
.format(pattern[platform], os.environ['PATH']))
|
||||||
|
|
||||||
@unittest.skipIf(ci_os != 'windows', 'Strawberry perl test only applies to windows')
|
@unittest.skipIf(ci_os != 'windows', 'Strawberry perl test only applies to windows')
|
||||||
def test_StrawberryInPathVS2019(self):
|
def test_StrawberryInPath(self):
|
||||||
if 'APPVEYOR' in os.environ:
|
|
||||||
os.environ['CMP'] = 'vs2019'
|
|
||||||
cue.setup_for_build(self.args)
|
cue.setup_for_build(self.args)
|
||||||
self.assertTrue(re.search('strawberry', os.environ['PATH'], flags=re.IGNORECASE),
|
self.assertTrue(re.search('strawberry', os.environ['PATH'], flags=re.IGNORECASE),
|
||||||
'Strawberry Perl installed but location not in PATH (found {0})'
|
'Strawberry Perl location not in PATH (found PATH = {0})'
|
||||||
.format(os.environ['PATH']))
|
.format(os.environ['PATH']))
|
||||||
|
|
||||||
def setBase314(self, yesno):
|
def setBase314(self, yesno):
|
||||||
@@ -817,6 +844,44 @@ class TestSetupForBuild(unittest.TestCase):
|
|||||||
'Extra make arg [{0}] not set (expected "bla {0}", found "{1}")'
|
'Extra make arg [{0}] not set (expected "bla {0}", found "{1}")'
|
||||||
.format(ind, cue.extra_makeargs[ind]))
|
.format(ind, cue.extra_makeargs[ind]))
|
||||||
|
|
||||||
|
|
||||||
|
class TestHooks(unittest.TestCase):
|
||||||
|
location = os.path.join(cue.ci['cachedir'], 'hook_test')
|
||||||
|
bla_file = os.path.join(location, 'bla.txt')
|
||||||
|
new_file = os.path.join(location, 'dd', 'new.txt')
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
if os.path.exists(self.location):
|
||||||
|
shutil.rmtree(self.location, onerror=cue.remove_readonly)
|
||||||
|
try:
|
||||||
|
os.makedirs(self.location)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
with open(self.bla_file, 'w') as f:
|
||||||
|
f.write('''LINE1=YES
|
||||||
|
LINE2=NO''')
|
||||||
|
|
||||||
|
def test_patchfile(self):
|
||||||
|
hook = os.path.join(builddir, 'test.patch')
|
||||||
|
cue.apply_patch(hook, cwd=self.location)
|
||||||
|
line1_yes = False
|
||||||
|
with open(self.bla_file) as f:
|
||||||
|
if 'LINE1=YES' in f.read():
|
||||||
|
line1_yes = True
|
||||||
|
self.assertFalse(line1_yes, "Patch didn't change line in test file 'bla.txt'")
|
||||||
|
self.assertTrue(os.path.exists(self.new_file), "patch didn't add new file")
|
||||||
|
|
||||||
|
def test_archiveZip(self):
|
||||||
|
hook = os.path.join(builddir, 'test.zip')
|
||||||
|
cue.extract_archive(hook, cwd=self.location)
|
||||||
|
self.assertTrue(os.path.exists(self.new_file), "archive extract didn't add new file")
|
||||||
|
|
||||||
|
def test_archive7z(self):
|
||||||
|
hook = os.path.join(builddir, 'test.7z')
|
||||||
|
cue.extract_archive(hook, cwd=self.location)
|
||||||
|
self.assertTrue(os.path.exists(self.new_file), "archive extract didn't add new file")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
if 'VV' in os.environ and os.environ['VV'] == '1':
|
if 'VV' in os.environ and os.environ['VV'] == '1':
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
@@ -827,5 +892,14 @@ if __name__ == "__main__":
|
|||||||
if sys.argv[1:] == ['env']:
|
if sys.argv[1:] == ['env']:
|
||||||
# testing with_vcvars
|
# testing with_vcvars
|
||||||
[print(K, '=', V) for K, V in os.environ.items()]
|
[print(K, '=', V) for K, V in os.environ.items()]
|
||||||
|
elif ci_os == 'windows' and sys.argv[1:] == ['findvs']:
|
||||||
|
from fnmatch import fnmatch
|
||||||
|
print('Available Visual Studio versions')
|
||||||
|
for base in (r'C:\Program Files (x86)', r'C:\Program Files'):
|
||||||
|
for root, dirs, files in os.walk(base):
|
||||||
|
for fname in files:
|
||||||
|
if fnmatch(fname, 'vcvarsall.bat'):
|
||||||
|
print('Found', os.path.join(root, fname))
|
||||||
|
sys.stdout.flush()
|
||||||
else:
|
else:
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
390
cue.py
390
cue.py
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
"""CI build script for Linux/MacOS/Windows on Travis/AppVeyor
|
"""CI build script for Linux/MacOS/Windows on Travis/AppVeyor/GitHub-Actions
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
@@ -8,25 +8,69 @@ import sys, os, stat, shutil
|
|||||||
import fileinput
|
import fileinput
|
||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
|
import threading
|
||||||
|
from glob import glob
|
||||||
import subprocess as sp
|
import subprocess as sp
|
||||||
import distutils.util
|
import distutils.util
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
# Keep track of all files we write/append for later logging
|
||||||
|
_realopen = open
|
||||||
|
_modified_files = set()
|
||||||
|
def open(fname, mode='r'):
|
||||||
|
F = _realopen(fname, mode)
|
||||||
|
if 'w' in mode or 'a' in mode:
|
||||||
|
_modified_files.add(os.path.normpath(os.path.abspath(fname)))
|
||||||
|
return F
|
||||||
|
|
||||||
|
def log_modified():
|
||||||
|
for fname in _modified_files:
|
||||||
|
with Folded(os.path.basename(fname), 'Contents of '+fname):
|
||||||
|
with open(fname, 'r') as F:
|
||||||
|
sys.stdout.write(F.read())
|
||||||
|
sys.stdout.write(os.linesep)
|
||||||
|
|
||||||
|
def prepare_env():
|
||||||
|
'''HACK
|
||||||
|
github actions yaml configuration doesn't allow
|
||||||
|
conditional (un)setting of environments, only values.
|
||||||
|
Currently this script treats unset and empty environment
|
||||||
|
variables differently.
|
||||||
|
While this is the case, we unset any empty environment variables.
|
||||||
|
'''
|
||||||
|
toclear = tuple(k for k,v in os.environ.items() if len(v.strip())==0)
|
||||||
|
for var in toclear:
|
||||||
|
print('{0}Clearing empty environment variable {1}{2}'.format(ANSI_CYAN, var, ANSI_RESET))
|
||||||
|
del os.environ[var]
|
||||||
|
|
||||||
# Detect the service and set up context hash accordingly
|
# Detect the service and set up context hash accordingly
|
||||||
def detect_context():
|
def detect_context():
|
||||||
|
global homedir
|
||||||
|
|
||||||
buildconfig = 'default'
|
buildconfig = 'default'
|
||||||
|
ci['cachedir'] = os.path.join(homedir, '.cache')
|
||||||
|
|
||||||
if 'TRAVIS' in os.environ:
|
if 'TRAVIS' in os.environ:
|
||||||
ci['service'] = 'travis'
|
ci['service'] = 'travis'
|
||||||
ci['os'] = os.environ['TRAVIS_OS_NAME']
|
ci['os'] = os.environ['TRAVIS_OS_NAME']
|
||||||
ci['platform'] = 'x64'
|
ci['platform'] = 'x64'
|
||||||
ci['compiler'] = os.environ['TRAVIS_COMPILER']
|
ci['compiler'] = os.environ['TRAVIS_COMPILER']
|
||||||
if ci['os'] == 'windows':
|
ci['choco'] += ['strawberryperl']
|
||||||
ci['choco'] += ['strawberryperl']
|
if re.match(r'^vs', ci['compiler']):
|
||||||
if re.match(r'^vs', ci['compiler']):
|
# Only Visual Studio 2017 available
|
||||||
# Only Visual Studio 2017 available
|
ci['compiler'] = 'vs2017'
|
||||||
ci['compiler'] = 'vs2017'
|
if 'BCFG' in os.environ:
|
||||||
|
buildconfig = os.environ['BCFG'].lower()
|
||||||
|
|
||||||
|
if 'GITLAB_CI' in os.environ:
|
||||||
|
ci['service'] = 'gitlab'
|
||||||
|
ci['os'] = 'linux'
|
||||||
|
ci['platform'] = 'x64'
|
||||||
|
ci['sudo'] = [] # No sudo in GitLab Docker containers
|
||||||
|
ci['cachedir'] = os.path.join(curdir, '.cache') # No caches outside project directory
|
||||||
|
if 'CMP' in os.environ:
|
||||||
|
ci['compiler'] = os.environ['CMP']
|
||||||
if 'BCFG' in os.environ:
|
if 'BCFG' in os.environ:
|
||||||
buildconfig = os.environ['BCFG'].lower()
|
buildconfig = os.environ['BCFG'].lower()
|
||||||
|
|
||||||
@@ -43,6 +87,24 @@ def detect_context():
|
|||||||
ci['compiler'] = os.environ['CMP']
|
ci['compiler'] = os.environ['CMP']
|
||||||
buildconfig = os.environ['CONFIGURATION'].lower()
|
buildconfig = os.environ['CONFIGURATION'].lower()
|
||||||
|
|
||||||
|
if 'GITHUB_ACTIONS' in os.environ:
|
||||||
|
ci['service'] = 'github-actions'
|
||||||
|
if os.environ['RUNNER_OS'] == 'macOS':
|
||||||
|
ci['os'] = 'osx'
|
||||||
|
else:
|
||||||
|
ci['os'] = os.environ['RUNNER_OS'].lower()
|
||||||
|
ci['platform'] = 'x64'
|
||||||
|
if 'CMP' in os.environ:
|
||||||
|
ci['compiler'] = os.environ['CMP']
|
||||||
|
ci['choco'] += ['strawberryperl']
|
||||||
|
if 'BCFG' in os.environ:
|
||||||
|
buildconfig = os.environ['BCFG'].lower()
|
||||||
|
|
||||||
|
if re.search('static', buildconfig):
|
||||||
|
ci['static'] = True
|
||||||
|
if re.search('debug', buildconfig):
|
||||||
|
ci['debug'] = True
|
||||||
|
|
||||||
if 'STATIC' in os.environ:
|
if 'STATIC' in os.environ:
|
||||||
print("{0}WARNING: Variable 'STATIC' not supported anymore; use 'BCFG' instead{1}"
|
print("{0}WARNING: Variable 'STATIC' not supported anymore; use 'BCFG' instead{1}"
|
||||||
.format(ANSI_RED, ANSI_RESET))
|
.format(ANSI_RED, ANSI_RESET))
|
||||||
@@ -52,11 +114,6 @@ def detect_context():
|
|||||||
.format(ANSI_RED, buildconfig, ANSI_RESET))
|
.format(ANSI_RED, buildconfig, ANSI_RESET))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
if re.search('static', buildconfig):
|
|
||||||
ci['static'] = True
|
|
||||||
if re.search('debug', buildconfig):
|
|
||||||
ci['debug'] = True
|
|
||||||
|
|
||||||
if ci['static']:
|
if ci['static']:
|
||||||
ci['configuration'] = 'static'
|
ci['configuration'] = 'static'
|
||||||
else:
|
else:
|
||||||
@@ -68,19 +125,25 @@ def detect_context():
|
|||||||
|
|
||||||
ci['scriptsdir'] = os.path.abspath(os.path.dirname(sys.argv[0]))
|
ci['scriptsdir'] = os.path.abspath(os.path.dirname(sys.argv[0]))
|
||||||
|
|
||||||
|
if 'CACHEDIR' in os.environ:
|
||||||
|
ci['cachedir'] = os.environ['CACHEDIR']
|
||||||
|
|
||||||
if 'CHOCO' in os.environ:
|
if 'CHOCO' in os.environ:
|
||||||
ci['choco'].extend(os.environ['CHOCO'].split())
|
ci['choco'].extend(os.environ['CHOCO'].split())
|
||||||
|
|
||||||
if 'APT' in os.environ:
|
if 'APT' in os.environ:
|
||||||
ci['apt'].extend(os.environ['APT'].split())
|
ci['apt'].extend(os.environ['APT'].split())
|
||||||
|
|
||||||
|
if 'BREW' in os.environ:
|
||||||
|
ci['homebrew'].extend(os.environ['BREW'].split())
|
||||||
|
|
||||||
ci['test'] = True
|
ci['test'] = True
|
||||||
if 'TEST' in os.environ and os.environ['TEST'].lower() == 'no':
|
if 'TEST' in os.environ and os.environ['TEST'].lower() == 'no':
|
||||||
ci['test'] = False
|
ci['test'] = False
|
||||||
|
|
||||||
ci['parallel_make'] = 2
|
ci['parallel_make'] = 2
|
||||||
if 'PARALLEL_MAKE' in os.environ:
|
if 'PARALLEL_MAKE' in os.environ:
|
||||||
ci['parallel_make'] = os.environ['PARALLEL_MAKE']
|
ci['parallel_make'] = int(os.environ['PARALLEL_MAKE'])
|
||||||
|
|
||||||
ci['clean_deps'] = True
|
ci['clean_deps'] = True
|
||||||
if 'CLEAN_DEPS' in os.environ and os.environ['CLEAN_DEPS'].lower() == 'no':
|
if 'CLEAN_DEPS' in os.environ and os.environ['CLEAN_DEPS'].lower() == 'no':
|
||||||
@@ -106,6 +169,7 @@ is_make3 = False
|
|||||||
has_test_results = False
|
has_test_results = False
|
||||||
silent_dep_builds = True
|
silent_dep_builds = True
|
||||||
do_recompile = False
|
do_recompile = False
|
||||||
|
installed_7z = False
|
||||||
|
|
||||||
|
|
||||||
def clear_lists():
|
def clear_lists():
|
||||||
@@ -128,8 +192,11 @@ def clear_lists():
|
|||||||
ci['debug'] = False
|
ci['debug'] = False
|
||||||
ci['configuration'] = '<unknown>'
|
ci['configuration'] = '<unknown>'
|
||||||
ci['scriptsdir'] = ''
|
ci['scriptsdir'] = ''
|
||||||
|
ci['cachedir'] = ''
|
||||||
ci['choco'] = ['make']
|
ci['choco'] = ['make']
|
||||||
ci['apt'] = []
|
ci['apt'] = []
|
||||||
|
ci['homebrew'] = []
|
||||||
|
ci['sudo'] = ['sudo']
|
||||||
|
|
||||||
|
|
||||||
clear_lists()
|
clear_lists()
|
||||||
@@ -153,11 +220,16 @@ ANSI_CLEAR = "\033[0K"
|
|||||||
|
|
||||||
# Travis log fold control
|
# Travis log fold control
|
||||||
# from https://github.com/travis-ci/travis-rubies/blob/build/build.sh
|
# from https://github.com/travis-ci/travis-rubies/blob/build/build.sh
|
||||||
|
# GitHub Actions fold control
|
||||||
|
# from https://github.com/actions/toolkit/blob/master/docs/commands.md#group-and-ungroup-log-lines
|
||||||
|
|
||||||
def fold_start(tag, title):
|
def fold_start(tag, title):
|
||||||
if ci['service'] == 'travis':
|
if ci['service'] == 'travis':
|
||||||
print('travis_fold:start:{0}{1}{2}{3}'
|
print('travis_fold:start:{0}{1}{2}{3}'
|
||||||
.format(tag, ANSI_YELLOW, title, ANSI_RESET))
|
.format(tag, ANSI_YELLOW, title, ANSI_RESET))
|
||||||
|
elif ci['service'] == 'github-actions':
|
||||||
|
print('::group::{0}{1}{2}'
|
||||||
|
.format(ANSI_YELLOW, title, ANSI_RESET))
|
||||||
elif ci['service'] == 'appveyor':
|
elif ci['service'] == 'appveyor':
|
||||||
print('{0}===== \\/ \\/ \\/ ===== START: {1} ====={2}'
|
print('{0}===== \\/ \\/ \\/ ===== START: {1} ====={2}'
|
||||||
.format(ANSI_YELLOW, title, ANSI_RESET))
|
.format(ANSI_YELLOW, title, ANSI_RESET))
|
||||||
@@ -168,29 +240,36 @@ def fold_end(tag, title):
|
|||||||
if ci['service'] == 'travis':
|
if ci['service'] == 'travis':
|
||||||
print('\ntravis_fold:end:{0}\r'
|
print('\ntravis_fold:end:{0}\r'
|
||||||
.format(tag), end='')
|
.format(tag), end='')
|
||||||
|
elif ci['service'] == 'github-actions':
|
||||||
|
print('::endgroup::'
|
||||||
|
.format(ANSI_YELLOW, title, ANSI_RESET))
|
||||||
elif ci['service'] == 'appveyor':
|
elif ci['service'] == 'appveyor':
|
||||||
print('{0}----- /\\ /\\ /\\ ----- END: {1} -----{2}'
|
print('{0}----- /\\ /\\ /\\ ----- END: {1} -----{2}'
|
||||||
.format(ANSI_YELLOW, title, ANSI_RESET))
|
.format(ANSI_YELLOW, title, ANSI_RESET))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
|
class Folded(object):
|
||||||
|
def __init__(self, tag, title):
|
||||||
|
self.tag, self.title = tag, title
|
||||||
|
def __enter__(self):
|
||||||
|
fold_start(self.tag, self.title)
|
||||||
|
def __exit__(self,A,B,C):
|
||||||
|
fold_end(self.tag, self.title)
|
||||||
|
|
||||||
homedir = curdir
|
homedir = curdir
|
||||||
if 'HomeDrive' in os.environ:
|
if 'HomeDrive' in os.environ:
|
||||||
homedir = os.path.join(os.getenv('HomeDrive'), os.getenv('HomePath'))
|
homedir = os.path.join(os.getenv('HomeDrive'), os.getenv('HomePath'))
|
||||||
elif 'HOME' in os.environ:
|
elif 'HOME' in os.environ:
|
||||||
homedir = os.getenv('HOME')
|
homedir = os.getenv('HOME')
|
||||||
cachedir = os.path.join(homedir, '.cache')
|
|
||||||
toolsdir = os.path.join(homedir, '.tools')
|
toolsdir = os.path.join(homedir, '.tools')
|
||||||
rtemsdir = os.path.join(homedir, '.rtems')
|
|
||||||
|
|
||||||
if 'CACHEDIR' in os.environ:
|
|
||||||
cachedir = os.environ['CACHEDIR']
|
|
||||||
|
|
||||||
|
|
||||||
vcvars_table = {
|
vcvars_table = {
|
||||||
# https://en.wikipedia.org/wiki/Microsoft_Visual_Studio#History
|
# https://en.wikipedia.org/wiki/Microsoft_Visual_Studio#History
|
||||||
'vs2019': [r'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat'],
|
'vs2019': [r'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat',
|
||||||
|
r'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat'],
|
||||||
'vs2017': [r'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat',
|
'vs2017': [r'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat',
|
||||||
|
r'C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat',
|
||||||
r'C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat'],
|
r'C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat'],
|
||||||
'vs2015': [r'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat'],
|
'vs2015': [r'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat'],
|
||||||
'vs2013': [r'C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat'],
|
'vs2013': [r'C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat'],
|
||||||
@@ -295,14 +374,14 @@ def source_set(name):
|
|||||||
# - otherwise add "$var=$location" line and possibly move EPICS_BASE=... line to the end
|
# - otherwise add "$var=$location" line and possibly move EPICS_BASE=... line to the end
|
||||||
# Set places[var] = location
|
# Set places[var] = location
|
||||||
def update_release_local(var, location):
|
def update_release_local(var, location):
|
||||||
release_local = os.path.join(cachedir, 'RELEASE.local')
|
release_local = os.path.join(ci['cachedir'], 'RELEASE.local')
|
||||||
updated_line = '{0}={1}'.format(var, location.replace('\\', '/'))
|
updated_line = '{0}={1}'.format(var, location.replace('\\', '/'))
|
||||||
places[var] = location
|
places[var] = location
|
||||||
|
|
||||||
if not os.path.exists(release_local):
|
if not os.path.exists(release_local):
|
||||||
logger.debug('RELEASE.local does not exist, creating it')
|
logger.debug('RELEASE.local does not exist, creating it')
|
||||||
try:
|
try:
|
||||||
os.makedirs(cachedir)
|
os.makedirs(ci['cachedir'])
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
touch = open(release_local, 'w')
|
touch = open(release_local, 'w')
|
||||||
@@ -353,7 +432,10 @@ def call_git(args, **kws):
|
|||||||
return exitcode
|
return exitcode
|
||||||
|
|
||||||
|
|
||||||
def call_make(args=[], **kws):
|
def call_make(args=None, **kws):
|
||||||
|
global make_timeout
|
||||||
|
if args is None:
|
||||||
|
args = []
|
||||||
place = kws.get('cwd', os.getcwd())
|
place = kws.get('cwd', os.getcwd())
|
||||||
parallel = kws.pop('parallel', ci['parallel_make'])
|
parallel = kws.pop('parallel', ci['parallel_make'])
|
||||||
silent = kws.pop('silent', False)
|
silent = kws.pop('silent', False)
|
||||||
@@ -371,12 +453,42 @@ def call_make(args=[], **kws):
|
|||||||
makeargs += extra_makeargs
|
makeargs += extra_makeargs
|
||||||
logger.debug("EXEC '%s' in %s", ' '.join(['make'] + makeargs + args), place)
|
logger.debug("EXEC '%s' in %s", ' '.join(['make'] + makeargs + args), place)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
exitcode = sp.call(['make'] + makeargs + args, **kws)
|
sys.stderr.flush()
|
||||||
|
|
||||||
|
child = sp.Popen(['make'] + makeargs + args, **kws)
|
||||||
|
if make_timeout:
|
||||||
|
def expire(child):
|
||||||
|
logger.error('Timeout')
|
||||||
|
child.terminate()
|
||||||
|
timer = threading.Timer(make_timeout, expire, args=(child,))
|
||||||
|
timer.start()
|
||||||
|
|
||||||
|
exitcode = child.wait()
|
||||||
|
if make_timeout:
|
||||||
|
timer.cancel()
|
||||||
logger.debug('EXEC DONE')
|
logger.debug('EXEC DONE')
|
||||||
if exitcode != 0:
|
if exitcode != 0:
|
||||||
sys.exit(exitcode)
|
sys.exit(exitcode)
|
||||||
|
|
||||||
|
|
||||||
|
def apply_patch(file, **kws):
|
||||||
|
place = kws.get('cwd', os.getcwd())
|
||||||
|
print('Applying patch {0} in {1}'.format(file, place))
|
||||||
|
logger.debug("EXEC '%s' in %s", ' '.join(['patch', '-p1', '-i', file]), place)
|
||||||
|
sys.stdout.flush()
|
||||||
|
sp.check_call(['patch', '-p1', '-i', file], cwd=place)
|
||||||
|
logger.debug('EXEC DONE')
|
||||||
|
|
||||||
|
|
||||||
|
def extract_archive(file, **kws):
|
||||||
|
place = kws.get('cwd', os.getcwd())
|
||||||
|
print('Extracting archive {0} in {1}'.format(file, place))
|
||||||
|
logger.debug("EXEC '%s' in %s", ' '.join(['7z', 'x', '-aoa', '-bd', file]), place)
|
||||||
|
sys.stdout.flush()
|
||||||
|
sp.check_call(['7z', 'x', '-aoa', '-bd', file], cwd=place)
|
||||||
|
logger.debug('EXEC DONE')
|
||||||
|
|
||||||
|
|
||||||
def get_git_hash(place):
|
def get_git_hash(place):
|
||||||
logger.debug("EXEC 'git log -n1 --pretty=format:%%H' in %s", place)
|
logger.debug("EXEC 'git log -n1 --pretty=format:%%H' in %s", place)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
@@ -437,7 +549,7 @@ def add_dependency(dep):
|
|||||||
.format(ANSI_RED, tag, dep, setup[dep + '_REPOURL'], ANSI_RESET))
|
.format(ANSI_RED, tag, dep, setup[dep + '_REPOURL'], ANSI_RESET))
|
||||||
|
|
||||||
dirname = setup[dep + '_DIRNAME'] + '-{0}'.format(tag)
|
dirname = setup[dep + '_DIRNAME'] + '-{0}'.format(tag)
|
||||||
place = os.path.join(cachedir, dirname)
|
place = os.path.join(ci['cachedir'], dirname)
|
||||||
checked_file = os.path.join(place, "checked_out")
|
checked_file = os.path.join(place, "checked_out")
|
||||||
|
|
||||||
if os.path.isdir(place):
|
if os.path.isdir(place):
|
||||||
@@ -459,14 +571,14 @@ def add_dependency(dep):
|
|||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
if not os.path.isdir(place):
|
if not os.path.isdir(place):
|
||||||
if not os.path.isdir(cachedir):
|
if not os.path.isdir(ci['cachedir']):
|
||||||
os.makedirs(cachedir)
|
os.makedirs(ci['cachedir'])
|
||||||
# clone dependency
|
# clone dependency
|
||||||
print('Cloning {0} of dependency {1} into {2}'
|
print('Cloning {0} of dependency {1} into {2}'
|
||||||
.format(tag, dep, place))
|
.format(tag, dep, place))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
call_git(['clone', '--quiet'] + deptharg + recursearg + ['--branch', tag, setup[dep + '_REPOURL'], dirname],
|
call_git(['clone', '--quiet'] + deptharg + recursearg + ['--branch', tag, setup[dep + '_REPOURL'], dirname],
|
||||||
cwd=cachedir)
|
cwd=ci['cachedir'])
|
||||||
|
|
||||||
sp.check_call(['git', 'log', '-n1'], cwd=place)
|
sp.check_call(['git', 'log', '-n1'], cwd=place)
|
||||||
logger.debug('Setting do_recompile = True (all following modules will be recompiled')
|
logger.debug('Setting do_recompile = True (all following modules will be recompiled')
|
||||||
@@ -489,13 +601,19 @@ def add_dependency(dep):
|
|||||||
with open(release, 'w') as fout:
|
with open(release, 'w') as fout:
|
||||||
print('-include $(TOP)/../RELEASE.local', file=fout)
|
print('-include $(TOP)/../RELEASE.local', file=fout)
|
||||||
|
|
||||||
# run hook if defined
|
# Apply HOOK
|
||||||
if dep + '_HOOK' in setup:
|
if dep + '_HOOK' in setup:
|
||||||
hook = os.path.join(place, setup[dep + '_HOOK'])
|
hook = setup[dep + '_HOOK']
|
||||||
if os.path.exists(hook):
|
hook_file = os.path.join(curdir, hook)
|
||||||
print('Running hook {0} in {1}'.format(setup[dep + '_HOOK'], place))
|
if os.path.exists(hook_file):
|
||||||
sys.stdout.flush()
|
if re.match(r'.+\.patch$', hook):
|
||||||
sp.check_call(hook, shell=True, cwd=place)
|
apply_patch(hook_file, cwd=place)
|
||||||
|
elif re.match(r'.+\.(zip|7z)$', hook):
|
||||||
|
extract_archive(hook_file, cwd=place)
|
||||||
|
else:
|
||||||
|
print('Running hook {0} in {1}'.format(hook, place))
|
||||||
|
sys.stdout.flush()
|
||||||
|
sp.check_call(hook_file, shell=True, cwd=place)
|
||||||
|
|
||||||
# write checked out commit hash to marker file
|
# write checked out commit hash to marker file
|
||||||
head = get_git_hash(place)
|
head = get_git_hash(place)
|
||||||
@@ -551,35 +669,37 @@ def setup_for_build(args):
|
|||||||
global is_base314, has_test_results, is_make3
|
global is_base314, has_test_results, is_make3
|
||||||
dllpaths = []
|
dllpaths = []
|
||||||
|
|
||||||
|
logger.debug('Setting up the build environment')
|
||||||
|
|
||||||
if ci['os'] == 'windows':
|
if ci['os'] == 'windows':
|
||||||
if ci['service'] == 'appveyor':
|
if os.path.exists(r'C:\Strawberry\perl\bin'):
|
||||||
if ci['compiler'] == 'vs2019':
|
# Put strawberry perl in front of the PATH (so that Git Perl is further behind)
|
||||||
# put strawberry perl in the PATH
|
logger.debug('Adding Strawberry Perl in front of the PATH')
|
||||||
os.environ['PATH'] = os.pathsep.join([os.path.join(r'C:\Strawberry\perl\site\bin'),
|
os.environ['PATH'] = os.pathsep.join([r'C:\Strawberry\c\bin',
|
||||||
os.path.join(r'C:\Strawberry\perl\bin'),
|
r'C:\Strawberry\perl\site\bin',
|
||||||
os.environ['PATH']])
|
r'C:\Strawberry\perl\bin',
|
||||||
if ci['compiler'] == 'gcc':
|
|
||||||
if 'INCLUDE' not in os.environ:
|
|
||||||
os.environ['INCLUDE'] = ''
|
|
||||||
if ci['platform'] == 'x86':
|
|
||||||
os.environ['INCLUDE'] = os.pathsep.join(
|
|
||||||
[r'C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\include',
|
|
||||||
os.environ['INCLUDE']])
|
|
||||||
os.environ['PATH'] = os.pathsep.join([r'C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin',
|
|
||||||
os.environ['PATH']])
|
|
||||||
elif ci['platform'] == 'x64':
|
|
||||||
os.environ['INCLUDE'] = os.pathsep.join(
|
|
||||||
[r'C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\include',
|
|
||||||
os.environ['INCLUDE']])
|
|
||||||
os.environ['PATH'] = os.pathsep.join([r'C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin',
|
|
||||||
os.environ['PATH']])
|
|
||||||
if ci['service'] == 'travis':
|
|
||||||
os.environ['PATH'] = os.pathsep.join([r'C:\Strawberry\perl\site\bin', r'C:\Strawberry\perl\bin',
|
|
||||||
os.environ['PATH']])
|
os.environ['PATH']])
|
||||||
|
|
||||||
|
if ci['service'] == 'appveyor' and ci['compiler'] == 'gcc':
|
||||||
|
logger.debug('Adding AppVeyor MSYS2/MinGW installation to PATH and INCLUDE')
|
||||||
|
if 'INCLUDE' not in os.environ:
|
||||||
|
os.environ['INCLUDE'] = ''
|
||||||
|
if ci['platform'] == 'x86':
|
||||||
|
os.environ['INCLUDE'] = os.pathsep.join(
|
||||||
|
[r'C:\msys64\mingw32\include',
|
||||||
|
os.environ['INCLUDE']])
|
||||||
|
os.environ['PATH'] = os.pathsep.join([r'C:\msys64\mingw32\bin',
|
||||||
|
os.environ['PATH']])
|
||||||
|
elif ci['platform'] == 'x64':
|
||||||
|
os.environ['INCLUDE'] = os.pathsep.join(
|
||||||
|
[r'C:\msys64\mingw64\include',
|
||||||
|
os.environ['INCLUDE']])
|
||||||
|
os.environ['PATH'] = os.pathsep.join([r'C:\msys64\mingw64\bin',
|
||||||
|
os.environ['PATH']])
|
||||||
|
|
||||||
# Find BASE location
|
# Find BASE location
|
||||||
if not building_base:
|
if not building_base:
|
||||||
with open(os.path.join(cachedir, 'RELEASE.local'), 'r') as f:
|
with open(os.path.join(ci['cachedir'], 'RELEASE.local'), 'r') as f:
|
||||||
lines = f.readlines()
|
lines = f.readlines()
|
||||||
for line in lines:
|
for line in lines:
|
||||||
(mod, place) = line.strip().split('=')
|
(mod, place) = line.strip().split('=')
|
||||||
@@ -588,11 +708,13 @@ def setup_for_build(args):
|
|||||||
else:
|
else:
|
||||||
places['EPICS_BASE'] = '.'
|
places['EPICS_BASE'] = '.'
|
||||||
|
|
||||||
|
logger.debug('Using EPICS Base at %s', places['EPICS_BASE'])
|
||||||
|
|
||||||
detect_epics_host_arch()
|
detect_epics_host_arch()
|
||||||
|
|
||||||
if ci['os'] == 'windows':
|
if ci['os'] == 'windows':
|
||||||
if not building_base:
|
if not building_base:
|
||||||
with open(os.path.join(cachedir, 'RELEASE.local'), 'r') as f:
|
with open(os.path.join(ci['cachedir'], 'RELEASE.local'), 'r') as f:
|
||||||
lines = f.readlines()
|
lines = f.readlines()
|
||||||
for line in lines:
|
for line in lines:
|
||||||
(mod, place) = line.strip().split('=')
|
(mod, place) = line.strip().split('=')
|
||||||
@@ -611,6 +733,7 @@ def setup_for_build(args):
|
|||||||
with open(cfg_base_version) as myfile:
|
with open(cfg_base_version) as myfile:
|
||||||
if 'BASE_3_14=YES' in myfile.read():
|
if 'BASE_3_14=YES' in myfile.read():
|
||||||
is_base314 = True
|
is_base314 = True
|
||||||
|
logger.debug('Check if EPICS Base is a 3.14 series: %s', is_base314)
|
||||||
|
|
||||||
if not is_base314:
|
if not is_base314:
|
||||||
rules_build = os.path.join(places['EPICS_BASE'], 'configure', 'RULES_BUILD')
|
rules_build = os.path.join(places['EPICS_BASE'], 'configure', 'RULES_BUILD')
|
||||||
@@ -623,6 +746,7 @@ def setup_for_build(args):
|
|||||||
# Check make version
|
# Check make version
|
||||||
if re.match(r'^GNU Make 3', sp.check_output(['make', '-v']).decode('ascii')):
|
if re.match(r'^GNU Make 3', sp.check_output(['make', '-v']).decode('ascii')):
|
||||||
is_make3 = True
|
is_make3 = True
|
||||||
|
logger.debug('Check if make is a 3.x series: %s', is_make3)
|
||||||
|
|
||||||
# apparently %CD% is handled automagically
|
# apparently %CD% is handled automagically
|
||||||
os.environ['TOP'] = os.getcwd()
|
os.environ['TOP'] = os.getcwd()
|
||||||
@@ -640,8 +764,9 @@ def setup_for_build(args):
|
|||||||
|
|
||||||
# Add EXTRA make arguments
|
# Add EXTRA make arguments
|
||||||
for tag in ['EXTRA', 'EXTRA1', 'EXTRA2', 'EXTRA3', 'EXTRA4', 'EXTRA5']:
|
for tag in ['EXTRA', 'EXTRA1', 'EXTRA2', 'EXTRA3', 'EXTRA4', 'EXTRA5']:
|
||||||
if tag in os.environ:
|
val = os.environ.get(tag, "")
|
||||||
extra_makeargs.append(os.environ[tag])
|
if len(val)>0:
|
||||||
|
extra_makeargs.append(val)
|
||||||
|
|
||||||
|
|
||||||
def fix_etc_hosts():
|
def fix_etc_hosts():
|
||||||
@@ -653,9 +778,9 @@ def fix_etc_hosts():
|
|||||||
# 127.0.1.1 localhost localhost ip4-loopback
|
# 127.0.1.1 localhost localhost ip4-loopback
|
||||||
# 127.0.0.1 localhost nettuno travis vagrant travis-job-....
|
# 127.0.0.1 localhost nettuno travis vagrant travis-job-....
|
||||||
|
|
||||||
logger.debug("EXEC sudo sed -ie '/^127\.0\.1\.1/ s|localhost\s*||g' /etc/hosts")
|
logger.debug("EXEC sudo sed -ie '/^127\\.0\\.1\\.1/ s|localhost\\s*||g' /etc/hosts")
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
exitcode = sp.call(['sudo', 'sed', '-ie', '/^127\.0\.1\.1/ s|localhost\s*||g', '/etc/hosts'])
|
sp.call(['sudo', 'sed', '-ie', '/^127\\.0\\.1\\.1/ s|localhost\\s*||g', '/etc/hosts'])
|
||||||
logger.debug('EXEC DONE')
|
logger.debug('EXEC DONE')
|
||||||
|
|
||||||
|
|
||||||
@@ -694,10 +819,31 @@ def prepare(args):
|
|||||||
targetdir = 'configure'
|
targetdir = 'configure'
|
||||||
else:
|
else:
|
||||||
targetdir = '.'
|
targetdir = '.'
|
||||||
shutil.copy(os.path.join(cachedir, 'RELEASE.local'), targetdir)
|
shutil.copy(os.path.join(ci['cachedir'], 'RELEASE.local'), targetdir)
|
||||||
|
|
||||||
fold_end('check.out.dependencies', 'Checking/cloning dependencies')
|
fold_end('check.out.dependencies', 'Checking/cloning dependencies')
|
||||||
|
|
||||||
|
cxx = None
|
||||||
|
if ci['compiler'].startswith('clang'):
|
||||||
|
cxx = re.sub(r'clang', r'clang++', ci['compiler'])
|
||||||
|
elif ci['compiler'].startswith('gcc'):
|
||||||
|
cxx = re.sub(r'gcc', r'g++', ci['compiler'])
|
||||||
|
|
||||||
|
# Cross compilation on Linux to RTEMS (set RTEMS to version "4.9", "4.10")
|
||||||
|
# requires qemu, bison, flex, texinfo, install-info
|
||||||
|
# rtems_bsp is needed also if Base is from cache
|
||||||
|
if 'RTEMS' in os.environ:
|
||||||
|
if 'RTEMS_TARGET' in os.environ:
|
||||||
|
rtems_target = os.environ['RTEMS_TARGET']
|
||||||
|
elif os.path.exists(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
||||||
|
'CONFIG.Common.RTEMS-pc386-qemu')):
|
||||||
|
# Base 3.15 doesn't have -qemu target architecture
|
||||||
|
rtems_target = 'RTEMS-pc386-qemu'
|
||||||
|
else:
|
||||||
|
rtems_target = 'RTEMS-pc386'
|
||||||
|
# eg. "RTEMS-pc386" or "RTEMS-pc386-qemu" -> "pc386"
|
||||||
|
rtems_bsp = re.match('^RTEMS-([^-]*)(?:-qemu)?$', rtems_target).group(1)
|
||||||
|
|
||||||
if 'BASE' in modules_to_compile or building_base:
|
if 'BASE' in modules_to_compile or building_base:
|
||||||
fold_start('set.up.epics_build', 'Configuring EPICS build system')
|
fold_start('set.up.epics_build', 'Configuring EPICS build system')
|
||||||
|
|
||||||
@@ -774,65 +920,65 @@ CROSS_COMPILER_TARGET_ARCHS += windows-x64-mingw''')
|
|||||||
# Cross compilation on Linux to RTEMS (set RTEMS to version "4.9", "4.10")
|
# Cross compilation on Linux to RTEMS (set RTEMS to version "4.9", "4.10")
|
||||||
# requires qemu, bison, flex, texinfo, install-info
|
# requires qemu, bison, flex, texinfo, install-info
|
||||||
if 'RTEMS' in os.environ:
|
if 'RTEMS' in os.environ:
|
||||||
print('Cross compiler RTEMS{0} @ pc386',format(os.environ['RTEMS']))
|
print('Cross compiler RTEMS{0} @ {1}'.format(os.environ['RTEMS'], rtems_target))
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
||||||
'CONFIG_SITE.Common.RTEMS'), 'a') as f:
|
'CONFIG_SITE.Common.RTEMS'), 'a') as f:
|
||||||
f.write('''
|
f.write('''
|
||||||
RTEMS_VERSION={0}
|
RTEMS_VERSION={0}
|
||||||
RTEMS_BASE={1}'''.format(os.environ['RTEMS'], rtemsdir))
|
RTEMS_BASE=/opt/rtems/{0}'''.format(os.environ['RTEMS']))
|
||||||
|
|
||||||
# Base 3.15 doesn't have -qemu target architecture
|
|
||||||
qemu_suffix = ''
|
|
||||||
if os.path.exists(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
|
||||||
'CONFIG.Common.RTEMS-pc386-qemu')):
|
|
||||||
qemu_suffix = '-qemu'
|
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG_SITE'), 'a') as f:
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG_SITE'), 'a') as f:
|
||||||
f.write('''
|
f.write('''
|
||||||
CROSS_COMPILER_TARGET_ARCHS += RTEMS-pc386{0}'''.format(qemu_suffix))
|
CROSS_COMPILER_TARGET_ARCHS += {0}
|
||||||
|
'''.format(rtems_target))
|
||||||
|
|
||||||
host_ccmplr_name = re.sub(r'^([a-zA-Z][^-]*(-[a-zA-Z][^-]*)*)+(-[0-9.]|)$', r'\1', ci['compiler'])
|
print('Host compiler', ci['compiler'])
|
||||||
host_cmplr_ver_suffix = re.sub(r'^([a-zA-Z][^-]*(-[a-zA-Z][^-]*)*)+(-[0-9.]|)$', r'\3', ci['compiler'])
|
|
||||||
host_cmpl_ver = host_cmplr_ver_suffix[1:]
|
|
||||||
|
|
||||||
if host_ccmplr_name == 'clang':
|
if ci['compiler'].startswith('clang'):
|
||||||
print('Host compiler clang')
|
|
||||||
host_cppcmplr_name = re.sub(r'clang', r'clang++', host_ccmplr_name)
|
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
||||||
'CONFIG_SITE.Common.'+os.environ['EPICS_HOST_ARCH']), 'a') as f:
|
'CONFIG_SITE.Common.'+os.environ['EPICS_HOST_ARCH']), 'a') as f:
|
||||||
f.write('''
|
f.write('''
|
||||||
GNU = NO
|
GNU = NO
|
||||||
CMPLR_CLASS = clang
|
CMPLR_CLASS = clang
|
||||||
CC = {0}{2}
|
CC = {0}
|
||||||
CCC = {1}{2}'''.format(host_ccmplr_name, host_cppcmplr_name, host_cmplr_ver_suffix))
|
CCC = {1}'''.format(ci['compiler'], cxx))
|
||||||
|
|
||||||
# hack
|
# hack
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG.gnuCommon'), 'a') as f:
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG.gnuCommon'), 'a') as f:
|
||||||
f.write('''
|
f.write('''
|
||||||
CMPLR_CLASS = clang''')
|
CMPLR_CLASS = clang''')
|
||||||
|
|
||||||
if host_ccmplr_name == 'gcc':
|
elif ci['compiler'].startswith('gcc'):
|
||||||
print('Host compiler gcc')
|
|
||||||
host_cppcmplr_name = re.sub(r'gcc', r'g++', host_ccmplr_name)
|
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'os',
|
||||||
'CONFIG_SITE.Common.' + os.environ['EPICS_HOST_ARCH']), 'a') as f:
|
'CONFIG_SITE.Common.' + os.environ['EPICS_HOST_ARCH']), 'a') as f:
|
||||||
f.write('''
|
f.write('''
|
||||||
CC = {0}{2}
|
CC = {0}
|
||||||
CCC = {1}{2}'''.format(host_ccmplr_name, host_cppcmplr_name, host_cmplr_ver_suffix))
|
CCC = {1}'''.format(ci['compiler'], cxx))
|
||||||
|
|
||||||
# Add additional flags to CONFIG_SITE
|
elif ci['compiler'].startswith('vs'):
|
||||||
flags_text = ''
|
pass # nothing special
|
||||||
|
|
||||||
|
else:
|
||||||
|
raise ValueError('Unknown compiler name {0}. valid forms include: gcc, gcc-4.8, clang, vs2019'.format(ci['compiler']))
|
||||||
|
|
||||||
|
# Add additional settings to CONFIG_SITE
|
||||||
|
extra_config = ''
|
||||||
if 'USR_CPPFLAGS' in os.environ:
|
if 'USR_CPPFLAGS' in os.environ:
|
||||||
flags_text += '''
|
extra_config += '''
|
||||||
USR_CPPFLAGS += {0}'''.format(os.environ['USR_CPPFLAGS'])
|
USR_CPPFLAGS += {0}'''.format(os.environ['USR_CPPFLAGS'])
|
||||||
if 'USR_CFLAGS' in os.environ:
|
if 'USR_CFLAGS' in os.environ:
|
||||||
flags_text += '''
|
extra_config += '''
|
||||||
USR_CFLAGS += {0}'''.format(os.environ['USR_CFLAGS'])
|
USR_CFLAGS += {0}'''.format(os.environ['USR_CFLAGS'])
|
||||||
if 'USR_CXXFLAGS' in os.environ:
|
if 'USR_CXXFLAGS' in os.environ:
|
||||||
flags_text += '''
|
extra_config += '''
|
||||||
USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
|
USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
|
||||||
if flags_text:
|
if ci['service'] == 'github-actions' and ci['os'] == 'windows':
|
||||||
|
extra_config += '''
|
||||||
|
PERL = C:/Strawberry/perl/bin/perl -CSD'''
|
||||||
|
|
||||||
|
if extra_config:
|
||||||
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG_SITE'), 'a') as f:
|
with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG_SITE'), 'a') as f:
|
||||||
f.write(flags_text)
|
f.write(extra_config)
|
||||||
|
|
||||||
fold_end('set.up.epics_build', 'Configuring EPICS build system')
|
fold_end('set.up.epics_build', 'Configuring EPICS build system')
|
||||||
|
|
||||||
@@ -841,25 +987,39 @@ USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
|
|||||||
|
|
||||||
if ci['os'] == 'windows' and ci['choco']:
|
if ci['os'] == 'windows' and ci['choco']:
|
||||||
fold_start('install.choco', 'Installing CHOCO packages')
|
fold_start('install.choco', 'Installing CHOCO packages')
|
||||||
sp.check_call(['choco', 'install'] + ci['choco'])
|
sp.check_call(['choco', 'install'] + ci['choco'] + ['-y', '--limitoutput', '--no-progress'])
|
||||||
fold_end('install.choco', 'Installing CHOCO packages')
|
fold_end('install.choco', 'Installing CHOCO packages')
|
||||||
|
|
||||||
if ci['os'] == 'linux' and ci['apt']:
|
if ci['os'] == 'linux' and ci['apt']:
|
||||||
fold_start('install.apt', 'Installing APT packages')
|
fold_start('install.apt', 'Installing APT packages')
|
||||||
sp.check_call(['sudo', 'apt-get', '-y', 'install'] + ci['apt'])
|
sp.check_call(ci['sudo'] + ['apt-get', '-y', 'update'])
|
||||||
|
sp.check_call(ci['sudo'] + ['apt-get', 'install', '-y', '-qq'] + ci['apt'])
|
||||||
fold_end('install.apt', 'Installing APT packages')
|
fold_end('install.apt', 'Installing APT packages')
|
||||||
|
|
||||||
|
if ci['os'] == 'osx' and ci['homebrew']:
|
||||||
|
fold_start('install.homebrew', 'Installing Homebrew packages')
|
||||||
|
sp.check_call(['brew', 'install'] + ci['homebrew'])
|
||||||
|
fold_end('install.homebrew', 'Installing Homebrew packages')
|
||||||
|
|
||||||
if ci['os'] == 'linux' and 'RTEMS' in os.environ:
|
if ci['os'] == 'linux' and 'RTEMS' in os.environ:
|
||||||
tar_name = 'i386-rtems{0}-trusty-20171203-{0}.tar.bz2'.format(os.environ['RTEMS'])
|
rsb_release = os.environ.get('RSB_BUILD', '20210306')
|
||||||
|
tar_name = '{0}-rtems{1}.tar.xz'.format(rtems_bsp, os.environ['RTEMS'])
|
||||||
print('Downloading RTEMS {0} cross compiler: {1}'
|
print('Downloading RTEMS {0} cross compiler: {1}'
|
||||||
.format(os.environ['RTEMS'], tar_name))
|
.format(os.environ['RTEMS'], tar_name))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
sp.check_call(['curl', '-fsSL', '--retry', '3', '-o', tar_name,
|
sp.check_call(['curl', '-fsSL', '--retry', '3', '-o', tar_name,
|
||||||
'https://github.com/mdavidsaver/rsb/releases/download/20171203-{0}/{1}'
|
'https://github.com/mdavidsaver/rsb/releases/download/{0}%2F{1}/{2}'
|
||||||
.format(os.environ['RTEMS'], tar_name)],
|
.format(os.environ['RTEMS'], rsb_release, tar_name)],
|
||||||
cwd=toolsdir)
|
cwd=toolsdir)
|
||||||
sp.check_call(['tar', '-C', '/', '-xmj', '-f', os.path.join(toolsdir, tar_name)])
|
sudo_prefix = []
|
||||||
|
if ci['service'] == 'github-actions':
|
||||||
|
sudo_prefix = ['sudo']
|
||||||
|
sp.check_call(sudo_prefix + ['tar', '-C', '/', '-xmJ', '-f', os.path.join(toolsdir, tar_name)])
|
||||||
os.remove(os.path.join(toolsdir, tar_name))
|
os.remove(os.path.join(toolsdir, tar_name))
|
||||||
|
for rtems_cc in glob('/opt/rtems/*/bin/*-gcc'):
|
||||||
|
print('{0}{1} --version{2}'.format(ANSI_CYAN, rtems_cc, ANSI_RESET))
|
||||||
|
sys.stdout.flush()
|
||||||
|
sp.check_call([rtems_cc, '--version'])
|
||||||
|
|
||||||
setup_for_build(args)
|
setup_for_build(args)
|
||||||
|
|
||||||
@@ -880,6 +1040,13 @@ USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
|
|||||||
print('{0}$ {1} --version{2}'.format(ANSI_CYAN, cc, ANSI_RESET))
|
print('{0}$ {1} --version{2}'.format(ANSI_CYAN, cc, ANSI_RESET))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
sp.check_call([cc, '--version'])
|
sp.check_call([cc, '--version'])
|
||||||
|
if cxx:
|
||||||
|
print('{0}$ {1} --version{2}'.format(ANSI_CYAN, cxx, ANSI_RESET))
|
||||||
|
sys.stdout.flush()
|
||||||
|
sp.check_call([cxx, '--version'])
|
||||||
|
|
||||||
|
if logging.getLogger().isEnabledFor(logging.DEBUG):
|
||||||
|
log_modified()
|
||||||
|
|
||||||
if not building_base:
|
if not building_base:
|
||||||
fold_start('build.dependencies', 'Build missing/outdated dependencies')
|
fold_start('build.dependencies', 'Build missing/outdated dependencies')
|
||||||
@@ -904,10 +1071,9 @@ USR_CXXFLAGS += {0}'''.format(os.environ['USR_CXXFLAGS'])
|
|||||||
print("%-10s %-12s %-11s %s" % (mod, setup[mod], stat, commit))
|
print("%-10s %-12s %-11s %s" % (mod, setup[mod], stat, commit))
|
||||||
|
|
||||||
print('{0}Contents of RELEASE.local{1}'.format(ANSI_CYAN, ANSI_RESET))
|
print('{0}Contents of RELEASE.local{1}'.format(ANSI_CYAN, ANSI_RESET))
|
||||||
with open(os.path.join(cachedir, 'RELEASE.local'), 'r') as f:
|
with open(os.path.join(ci['cachedir'], 'RELEASE.local'), 'r') as f:
|
||||||
print(f.read().strip())
|
print(f.read().strip())
|
||||||
|
|
||||||
|
|
||||||
def build(args):
|
def build(args):
|
||||||
setup_for_build(args)
|
setup_for_build(args)
|
||||||
fold_start('build.module', 'Build the main module')
|
fold_start('build.module', 'Build the main module')
|
||||||
@@ -997,12 +1163,30 @@ call "{vcvars}" {arch}
|
|||||||
|
|
||||||
|
|
||||||
def getargs():
|
def getargs():
|
||||||
from argparse import ArgumentParser, REMAINDER
|
from argparse import ArgumentParser, ArgumentError, REMAINDER
|
||||||
|
def timespec(s):
|
||||||
|
M = re.match(r'^\s*(\d+)\s*([A-Za-z]*)', s)
|
||||||
|
if not M:
|
||||||
|
raise ArgumentError('Expected timespec not {!r}'.format(s))
|
||||||
|
val = float(M.group(1))
|
||||||
|
try:
|
||||||
|
mult = {
|
||||||
|
'':1.0,
|
||||||
|
'S':1.0,
|
||||||
|
'M':60.0,
|
||||||
|
'H':60.0*60.0,
|
||||||
|
}[M.group(2).upper()]
|
||||||
|
except KeyError:
|
||||||
|
raise ArgumentError('Expect suffix S, M, or H. not {!r}'.format(s))
|
||||||
|
return val*mult
|
||||||
|
|
||||||
p = ArgumentParser()
|
p = ArgumentParser()
|
||||||
p.add_argument('--no-vcvars', dest='vcvars', default=True, action='store_false',
|
p.add_argument('--no-vcvars', dest='vcvars', default=True, action='store_false',
|
||||||
help='Assume vcvarsall.bat has already been run')
|
help='Assume vcvarsall.bat has already been run')
|
||||||
p.add_argument('--add-path', dest='paths', default=[], action='append',
|
p.add_argument('--add-path', dest='paths', default=[], action='append',
|
||||||
help='Append directory to %PATH%. Expands {ENVVAR}')
|
help='Append directory to $PATH or %%PATH%%. Expands {ENVVAR}')
|
||||||
|
p.add_argument('-T', '--timeout', type=timespec, metavar='DLY',
|
||||||
|
help='Terminate make after delay. DLY interpreted as second, or may be qualified with "S", "M", or "H". (default no timeout)')
|
||||||
subp = p.add_subparsers()
|
subp = p.add_subparsers()
|
||||||
|
|
||||||
cmd = subp.add_parser('prepare')
|
cmd = subp.add_parser('prepare')
|
||||||
@@ -1027,11 +1211,17 @@ def getargs():
|
|||||||
|
|
||||||
def main(raw):
|
def main(raw):
|
||||||
global silent_dep_builds
|
global silent_dep_builds
|
||||||
|
global make_timeout
|
||||||
args = getargs().parse_args(raw)
|
args = getargs().parse_args(raw)
|
||||||
if 'VV' in os.environ and os.environ['VV'] == '1':
|
if 'VV' in os.environ and os.environ['VV'] == '1':
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
silent_dep_builds = False
|
silent_dep_builds = False
|
||||||
|
|
||||||
|
make_timeout = args.timeout
|
||||||
|
if make_timeout:
|
||||||
|
logger.info('Will timeout after %.1f seconds', make_timeout)
|
||||||
|
|
||||||
|
prepare_env()
|
||||||
detect_context()
|
detect_context()
|
||||||
|
|
||||||
if args.vcvars and ci['compiler'].startswith('vs'):
|
if args.vcvars and ci['compiler'].startswith('vs'):
|
||||||
|
|||||||
70
github-actions/README.md
Normal file
70
github-actions/README.md
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
# GitHub Actions Scripts for EPICS Modules
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- 20 parallel runners on Linux/Windows (5 runners on MacOS)
|
||||||
|
- Ubuntu 16/18/20, MacOS 10.15, Windows Server 2016/2019
|
||||||
|
- Compile natively on Linux (gcc, clang)
|
||||||
|
- Compile natively on MacOS (clang)
|
||||||
|
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017 & 2019)
|
||||||
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
|
- Caching not supported yet.
|
||||||
|
|
||||||
|
## How to Use these Scripts
|
||||||
|
|
||||||
|
1. Add the ci-scripts respository as a Git Submodule
|
||||||
|
(see [README](../README.md) one level above).
|
||||||
|
|
||||||
|
2. Add settings files defining which dependencies in which versions
|
||||||
|
you want to build against
|
||||||
|
(see [README](../README.md) one level above).
|
||||||
|
|
||||||
|
3. Create a GitHub Actions configuration by copying one of the workflow
|
||||||
|
examples into the directory `.github/workflows` of your module.
|
||||||
|
```bash
|
||||||
|
$ mkdir -p .github/workflows
|
||||||
|
$ cp .ci/github-actions/ci-scripts-build.yml.example-full .github/workflows/ci-scripts-build.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Edit the workflow configuration to include the build jobs you want
|
||||||
|
GitHub Actions to run.
|
||||||
|
|
||||||
|
Build jobs are specified in the `jobs: <job-name>: strategy:`
|
||||||
|
declaration. The `matrix:` element specifies the axes as configuration
|
||||||
|
parameters with their lists of values,
|
||||||
|
`env:` (on the build level) controls the setting of environment variables
|
||||||
|
(which can be matrix parameters).
|
||||||
|
The `runs-on:` setting specifies the image (operating system) of the
|
||||||
|
runner.
|
||||||
|
The `name:` is what shows up in the web interface for the workflow,
|
||||||
|
builds and jobs, and the elements under `steps:` describe the actions
|
||||||
|
executed for each job of the matrix.
|
||||||
|
|
||||||
|
Please check the comments in the examples for more hints, and the
|
||||||
|
[GitHub Actions documentation](https://help.github.com/en/actions)
|
||||||
|
for a lot more options and details.
|
||||||
|
|
||||||
|
5. Push your changes and click on the `Actions` tab of your GitHub repository
|
||||||
|
page to see your build results.
|
||||||
|
|
||||||
|
## Specifics
|
||||||
|
|
||||||
|
#### Quote Environment Variable Values
|
||||||
|
|
||||||
|
Variable settings distinguish between numerical and string values.
|
||||||
|
Better quote all branch and tag names. E.g.,
|
||||||
|
```yaml
|
||||||
|
env:
|
||||||
|
BASE: "7.0"
|
||||||
|
```
|
||||||
|
to avoid ci-scripts trying to `git clone` with `--branch 7`.
|
||||||
|
|
||||||
|
## Caches
|
||||||
|
|
||||||
|
GitHub Actions provides caching of dependencies.
|
||||||
|
|
||||||
|
However, since their cache restore and create algorithm is fundamentally
|
||||||
|
different from those used by Travis and AppVeyor, this will require some
|
||||||
|
more changes in ci-scripts to work. Be patient.
|
||||||
199
github-actions/ci-scripts-build.yml.example-full
Normal file
199
github-actions/ci-scripts-build.yml.example-full
Normal file
@@ -0,0 +1,199 @@
|
|||||||
|
# .github/workflows/ci-scripts-build.yml for use with EPICS Base ci-scripts
|
||||||
|
# (see: https://github.com/epics-base/ci-scripts)
|
||||||
|
|
||||||
|
# This is YAML - indentation levels are crucial
|
||||||
|
|
||||||
|
# Set the 'name:' properties to values that work for you (MYMODULE)
|
||||||
|
|
||||||
|
name: MYMODULE
|
||||||
|
|
||||||
|
# Trigger on pushes and PRs to any branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'documentation/*'
|
||||||
|
- '**/*.html'
|
||||||
|
- '**/*.md'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
SETUP_PATH: .ci-local:.ci
|
||||||
|
# For the sequencer on Linux/Windows/MacOS
|
||||||
|
APT: re2c
|
||||||
|
CHOCO: re2c
|
||||||
|
BREW: re2c
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-base:
|
||||||
|
name: ${{ matrix.name }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
# Set environment variables from matrix parameters
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
WINE: ${{ matrix.wine }}
|
||||||
|
RTEMS: ${{ matrix.rtems }}
|
||||||
|
RTEMS_TARGET: ${{ matrix.rtems_target }}
|
||||||
|
EXTRA: ${{ matrix.extra }}
|
||||||
|
TEST: ${{ matrix.test }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
# Job names also name artifacts, character limitations apply
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
wine: "64"
|
||||||
|
name: "Ub-20 gcc-9 + MinGW"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: static
|
||||||
|
wine: "64"
|
||||||
|
name: "Ub-20 gcc-9 + MinGW, static"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: static
|
||||||
|
extra: "CMD_CXXFLAGS=-std=c++11"
|
||||||
|
name: "Ub-20 gcc-9 C++11, static"
|
||||||
|
|
||||||
|
- os: ubuntu-16.04
|
||||||
|
cmp: clang
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-16 clang-9"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: clang
|
||||||
|
configuration: default
|
||||||
|
extra: "CMD_CXXFLAGS=-std=c++11"
|
||||||
|
name: "Ub-20 clang-10 C++11"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
rtems: "4.10"
|
||||||
|
name: "Ub-20 gcc-9 + RT-4.10"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
rtems: "4.9"
|
||||||
|
name: "Ub-20 gcc-9 + RT-4.9"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
rtems: "5"
|
||||||
|
rtems_target: RTEMS-pc686-qemu
|
||||||
|
name: "Ub-20 gcc-9 + RT-5.1 pc686"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
rtems: "5"
|
||||||
|
rtems_target: RTEMS-beatnik
|
||||||
|
test: NO
|
||||||
|
name: "Ub-20 gcc-9 + RT-5.1 beatnik"
|
||||||
|
|
||||||
|
- os: ubuntu-16.04
|
||||||
|
cmp: gcc-4.8
|
||||||
|
utoolchain: true
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-16 gcc-4.8"
|
||||||
|
|
||||||
|
- os: ubuntu-16.04
|
||||||
|
cmp: gcc-4.9
|
||||||
|
utoolchain: true
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-16 gcc-4.9"
|
||||||
|
|
||||||
|
- os: ubuntu-18.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-18 gcc-7"
|
||||||
|
|
||||||
|
- os: ubuntu-18.04
|
||||||
|
cmp: gcc-8
|
||||||
|
utoolchain: true
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-18 gcc-8"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc-8
|
||||||
|
utoolchain: true
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-20 gcc-8"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: clang
|
||||||
|
configuration: default
|
||||||
|
name: "Ub-20 clang-10"
|
||||||
|
|
||||||
|
- os: macos-latest
|
||||||
|
cmp: clang
|
||||||
|
configuration: default
|
||||||
|
name: "MacOS clang-12"
|
||||||
|
|
||||||
|
- os: windows-2016
|
||||||
|
cmp: vs2017
|
||||||
|
configuration: default
|
||||||
|
name: "Win2016 MSC-17"
|
||||||
|
|
||||||
|
- os: windows-2016
|
||||||
|
cmp: vs2017
|
||||||
|
configuration: static
|
||||||
|
name: "Win2016 MSC-17, static"
|
||||||
|
|
||||||
|
- os: windows-2019
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
name: "Win2019 MinGW"
|
||||||
|
|
||||||
|
- os: windows-2019
|
||||||
|
cmp: gcc
|
||||||
|
configuration: static
|
||||||
|
name: "Win2019 MinGW, static"
|
||||||
|
|
||||||
|
- os: windows-2019
|
||||||
|
cmp: vs2019
|
||||||
|
configuration: default
|
||||||
|
name: "Win2019 MSC-19"
|
||||||
|
|
||||||
|
- os: windows-2019
|
||||||
|
cmp: vs2019
|
||||||
|
configuration: static
|
||||||
|
name: "Win2019 MSC-19, static"
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: Automatic core dumper analysis
|
||||||
|
uses: mdavidsaver/ci-core-dumper@master
|
||||||
|
- name: "apt-get install"
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
- name: "apt-get install ${{ matrix.cmp }}"
|
||||||
|
run: |
|
||||||
|
sudo apt-get -y install software-properties-common
|
||||||
|
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install ${{ matrix.cmp }}
|
||||||
|
if: matrix.utoolchain
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python .ci/cue.py prepare
|
||||||
|
- name: Build main module
|
||||||
|
run: python .ci/cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python .ci/cue.py test
|
||||||
|
- name: Upload tapfiles Artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: tapfiles ${{ matrix.name }}
|
||||||
|
path: '**/O.*/*.tap'
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python .ci/cue.py test-results
|
||||||
81
github-actions/ci-scripts-build.yml.example-mini
Normal file
81
github-actions/ci-scripts-build.yml.example-mini
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
# .github/workflows/ci-scripts-build.yml for use with EPICS Base ci-scripts
|
||||||
|
# (see: https://github.com/epics-base/ci-scripts)
|
||||||
|
|
||||||
|
# This is YAML - indentation levels are crucial
|
||||||
|
|
||||||
|
# Set the 'name:' properties to values that work for you
|
||||||
|
|
||||||
|
name: MYMODULE
|
||||||
|
|
||||||
|
# Trigger on pushes and PRs to any branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'documentation/*'
|
||||||
|
- '**/*.html'
|
||||||
|
- '**/*.md'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
SETUP_PATH: .ci-local:.ci
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-linux:
|
||||||
|
name: ${{ matrix.name }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
# Set environment variables from matrix parameters
|
||||||
|
env:
|
||||||
|
CMP: ${{ matrix.cmp }}
|
||||||
|
BCFG: ${{ matrix.configuration }}
|
||||||
|
BASE: ${{ matrix.base }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
- os: ubuntu-18.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
base: "7.0"
|
||||||
|
name: "7.0 Ub-18 gcc-7"
|
||||||
|
|
||||||
|
- os: ubuntu-18.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: static
|
||||||
|
base: "7.0"
|
||||||
|
name: "7.0 Ub-18 gcc-7 static"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: default
|
||||||
|
base: "3.15"
|
||||||
|
name: "3.15 Ub-20 gcc-9"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: static
|
||||||
|
base: "3.15"
|
||||||
|
name: "3.15 Ub-20 gcc-9 static"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: gcc
|
||||||
|
configuration: debug
|
||||||
|
base: "3.15"
|
||||||
|
name: "3.15 Ub-20 gcc-9 debug"
|
||||||
|
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
cmp: clang
|
||||||
|
configuration: default
|
||||||
|
base: "3.15"
|
||||||
|
name: "3.15 Ub-20 clang-10"
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: Prepare and compile dependencies
|
||||||
|
run: python .ci/cue.py prepare
|
||||||
|
- name: Build main module
|
||||||
|
run: python .ci/cue.py build
|
||||||
|
- name: Run main module tests
|
||||||
|
run: python .ci/cue.py test
|
||||||
|
- name: Collect and show test results
|
||||||
|
run: python .ci/cue.py test-results
|
||||||
121
gitlab/.gitlab-ci.yml.example-full
Normal file
121
gitlab/.gitlab-ci.yml.example-full
Normal file
@@ -0,0 +1,121 @@
|
|||||||
|
# .gitlab-ci.yml for testing EPICS Base ci-scripts
|
||||||
|
# (see: https://github.com/epics-base/ci-scripts)
|
||||||
|
|
||||||
|
# This is YAML - indentation levels are crucial
|
||||||
|
|
||||||
|
# GitLab runner can use any Docker container, we're using this one
|
||||||
|
# to be comparable with the other CI services
|
||||||
|
image: ubuntu:bionic
|
||||||
|
|
||||||
|
cache:
|
||||||
|
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
||||||
|
paths:
|
||||||
|
- .cache/
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: "recursive"
|
||||||
|
SETUP_PATH: ".ci-local:.ci"
|
||||||
|
BASE_RECURSIVE: "NO"
|
||||||
|
# Additional packages needed for
|
||||||
|
# | EPICS |clang| Windows cross builds |RTEMS testing |sequencer
|
||||||
|
APT: "libreadline6-dev libncurses5-dev perl clang g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86 re2c"
|
||||||
|
CMP: "gcc"
|
||||||
|
BGFC: "default"
|
||||||
|
|
||||||
|
# Template for build jobs (hidden)
|
||||||
|
.build:
|
||||||
|
stage: build
|
||||||
|
before_script:
|
||||||
|
- apt-get update -qq && apt-get install -y -qq build-essential git python curl p7zip-full
|
||||||
|
- python .ci/cue.py prepare
|
||||||
|
script:
|
||||||
|
- python .ci/cue.py build
|
||||||
|
- python .ci/cue.py test
|
||||||
|
- python .ci/cue.py test-results
|
||||||
|
|
||||||
|
# If you need to do more during install and build,
|
||||||
|
# add a local directory to your module and do e.g.
|
||||||
|
# - ./.ci-local/travis/install-extras.sh
|
||||||
|
|
||||||
|
# Define build jobs
|
||||||
|
|
||||||
|
# Well-known variables to use
|
||||||
|
# SET source setup file
|
||||||
|
# ADD_MODULES extra modules (for a specific job)
|
||||||
|
# BCFG build configuration (static/debug/static-debug;
|
||||||
|
# default: shared-optimized)
|
||||||
|
# TEST set to NO to skip running the tests (default: YES)
|
||||||
|
# VV set to make build scripts verbose (default: unset)
|
||||||
|
# EXTRA content will be added to make command line
|
||||||
|
# EXTRA1..5 more additional arguments for the make command
|
||||||
|
# (one argument per variable)
|
||||||
|
|
||||||
|
# Usually from setup files, but may be specified or overridden
|
||||||
|
# on a job line
|
||||||
|
# MODULES list of dependency modules
|
||||||
|
# BASE branch or release tag name of the EPICS Base to use
|
||||||
|
# <MODULE> branch or release tag for a specific module
|
||||||
|
# ... see README for setup file syntax description
|
||||||
|
|
||||||
|
# Different configurations of gcc and clang
|
||||||
|
gcc_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
|
||||||
|
gcc_static:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
BCFG: "static"
|
||||||
|
|
||||||
|
clang_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
CMP: "clang"
|
||||||
|
|
||||||
|
clang_static_c++11:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
CMP: "clang"
|
||||||
|
BCFG: "static"
|
||||||
|
EXTRA: "CMD_CXXFLAGS=-std=c++11"
|
||||||
|
|
||||||
|
# Cross-compilations to Windows using gcc/MinGW and WINE
|
||||||
|
wine32_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "3.15"
|
||||||
|
BCFG: "static"
|
||||||
|
WINE: "32"
|
||||||
|
TEST: "NO"
|
||||||
|
|
||||||
|
wine64_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
BCFG: "debug"
|
||||||
|
WINE: "64"
|
||||||
|
|
||||||
|
# Cross-builds to RTEMS 4.9, 4.10 and 5
|
||||||
|
rtems4.9_default:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.9"
|
||||||
|
BASE: "3.15"
|
||||||
|
|
||||||
|
rtems4.10_debug:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
RTEMS: "4.10"
|
||||||
|
BASE: "7.0"
|
||||||
|
BCFG: "debug"
|
||||||
|
|
||||||
|
rtems5_default:
|
||||||
|
extends: .build
|
||||||
|
image: ubuntu:focal
|
||||||
|
variables:
|
||||||
|
RTEMS: "5"
|
||||||
|
RTEMS_TARGET: "RTEMS-pc686-qemu"
|
||||||
36
gitlab/.gitlab-ci.yml.example-mini
Normal file
36
gitlab/.gitlab-ci.yml.example-mini
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# .gitlab-ci.yml for testing EPICS Base ci-scripts
|
||||||
|
# (see: https://github.com/epics-base/ci-scripts)
|
||||||
|
|
||||||
|
image: ubuntu:bionic
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: "recursive"
|
||||||
|
SETUP_PATH: ".ci-local:.ci"
|
||||||
|
BASE_RECURSIVE: "NO"
|
||||||
|
# Minimal set of packages needed to compile EPICS Base
|
||||||
|
APT: "libreadline6-dev libncurses5-dev perl"
|
||||||
|
CMP: "gcc"
|
||||||
|
BGFC: "default"
|
||||||
|
|
||||||
|
# Template for build jobs (hidden)
|
||||||
|
.build:
|
||||||
|
stage: build
|
||||||
|
before_script:
|
||||||
|
- apt-get update -qq && apt-get install -y -qq build-essential git python curl p7zip-full
|
||||||
|
- python .ci/cue.py prepare
|
||||||
|
script:
|
||||||
|
- python .ci/cue.py build
|
||||||
|
- python .ci/cue.py test
|
||||||
|
- python .ci/cue.py test-results
|
||||||
|
|
||||||
|
# Build on Linux using default gcc for Base branches 7.0 and 3.15
|
||||||
|
|
||||||
|
gcc_base_7_0:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "7.0"
|
||||||
|
|
||||||
|
gcc_base_3_15:
|
||||||
|
extends: .build
|
||||||
|
variables:
|
||||||
|
BASE: "3.15"
|
||||||
69
gitlab/README.md
Normal file
69
gitlab/README.md
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
# GitLab CI/CD Scripts for EPICS Modules
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Docker-based runners on Linux (one VM instance per job)
|
||||||
|
- Can use any Docker image from Dockerhub (the examples use
|
||||||
|
`ubuntu:bionic`)
|
||||||
|
- Compile natively using different compilers (gcc, clang)
|
||||||
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
|
- Built dependencies are cached (for faster builds).
|
||||||
|
|
||||||
|
## How to Use these Scripts
|
||||||
|
|
||||||
|
1. Get an account on [GitLab](https://gitlab.com/), create a project
|
||||||
|
for your support module and have it mirror your upstream GitHub
|
||||||
|
repository. For more details, please refer to the
|
||||||
|
[GitLab CI/CD documentation](https://docs.gitlab.com/ee/README.html).
|
||||||
|
|
||||||
|
(This applies when using the free tier offered to open source
|
||||||
|
projects. Things will be different using an "Enterprise"
|
||||||
|
installation on customer hardware.)
|
||||||
|
|
||||||
|
2. Add the ci-scripts respository as a Git Submodule
|
||||||
|
(see [README](../README.md) one level above).
|
||||||
|
|
||||||
|
3. Add settings files defining which dependencies in which versions
|
||||||
|
you want to build against
|
||||||
|
(see [README](../README.md) one level above).
|
||||||
|
|
||||||
|
4. Create a GitLab configuration by copying one of the examples into
|
||||||
|
the root directory of your module.
|
||||||
|
```
|
||||||
|
$ cp .ci/gitlab/.gitlab-ci.yml.example-full .gitlab-ci.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Edit the `.gitlab-ci.yml` configuration to include the jobs you want
|
||||||
|
GitLab CI/CD to run.
|
||||||
|
|
||||||
|
Build jobs are declared in the list at the end of the file.
|
||||||
|
Each element (starting with the un-indented line) defines the
|
||||||
|
settings for one build job. `extends:` specifies a template to use as
|
||||||
|
a default structure, `variables:` controls the setting of environment
|
||||||
|
variables (overwriting settings from the template).
|
||||||
|
Also see the comments in the examples for more hints, and the
|
||||||
|
[GitLab CI/CD documentation](https://docs.gitlab.com/ee/README.html)
|
||||||
|
for more options and details.
|
||||||
|
|
||||||
|
6. Push your changes to GitHub, wait for the synchronization (every 5min)
|
||||||
|
and check [GitLab](https://gitlab.com/) for your build results.
|
||||||
|
|
||||||
|
## Caches
|
||||||
|
|
||||||
|
GitLab is configured to keep the caches separate for different jobs.
|
||||||
|
|
||||||
|
However, changing the job description (in the `.gitlab-ci.yml`
|
||||||
|
configuration file) or its environment settings or changing a value
|
||||||
|
inside a setup file will _not_ invalidate the cache - you will
|
||||||
|
have to manually delete the caches through the GitLab web interface.
|
||||||
|
|
||||||
|
Caches are automatically removed after approx. four weeks.
|
||||||
|
Your jobs will have to rebuild them once in a while.
|
||||||
|
|
||||||
|
## Miscellanea
|
||||||
|
|
||||||
|
To use the feature to extract `.zip`/`.7z` archives by setting
|
||||||
|
`*_HOOK` variables, the Linux and MacOS runners need the APT package
|
||||||
|
`p7zip-full` resp. the Homebrew package `p7zip` installed.
|
||||||
14
test.patch
Normal file
14
test.patch
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
diff -ruN a/bla.txt b/bla.txt
|
||||||
|
--- a/bla.txt 2020-06-19 18:54:43.129076711 +0200
|
||||||
|
+++ b/bla.txt 2020-06-19 18:55:05.093948316 +0200
|
||||||
|
@@ -1,3 +1,3 @@
|
||||||
|
-LINE1=YES
|
||||||
|
+LINE1=NO
|
||||||
|
LINE2=NO
|
||||||
|
|
||||||
|
diff -ruN a/dd/new.txt b/dd/new.txt
|
||||||
|
--- a/dd/new.txt 1970-01-01 01:00:00.000000000 +0100
|
||||||
|
+++ b/dd/new.txt 2020-06-19 18:55:35.255032413 +0200
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+NEW LINE 1
|
||||||
|
+NEW LINE 2
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
dist: xenial
|
dist: bionic
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
@@ -31,11 +31,14 @@ addons:
|
|||||||
- g++-mingw-w64-x86-64
|
- g++-mingw-w64-x86-64
|
||||||
# for RTEMS cross builds
|
# for RTEMS cross builds
|
||||||
- qemu-system-x86
|
- qemu-system-x86
|
||||||
|
# for .zip/.7z archive hooks
|
||||||
|
- p7zip-full
|
||||||
homebrew:
|
homebrew:
|
||||||
packages:
|
packages:
|
||||||
# for the sequencer
|
# for the sequencer
|
||||||
- re2c
|
- re2c
|
||||||
update: true
|
# for .zip/.7z archive hooks
|
||||||
|
- p7zip
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- python .ci/cue.py prepare
|
- python .ci/cue.py prepare
|
||||||
@@ -100,9 +103,12 @@ jobs:
|
|||||||
|
|
||||||
# Cross-compilation to RTEMS
|
# Cross-compilation to RTEMS
|
||||||
|
|
||||||
- env: BASE=7.0 RTEMS=4.10
|
- env: BASE=7.0 RTEMS=4.10 APT=usrmerge
|
||||||
|
|
||||||
- env: BASE=7.0 RTEMS=4.9
|
- env: BASE=7.0 RTEMS=4.9 APT=usrmerge
|
||||||
|
|
||||||
|
- env: BASE=7.0 RTEMS=5 RTEMS_TARGET=RTEMS-pc686-qemu
|
||||||
|
dist: focal
|
||||||
|
|
||||||
# Other gcc versions (added as an extra package)
|
# Other gcc versions (added as an extra package)
|
||||||
|
|
||||||
@@ -118,6 +124,7 @@ jobs:
|
|||||||
|
|
||||||
- env: BASE=7.0
|
- env: BASE=7.0
|
||||||
os: osx
|
os: osx
|
||||||
|
osx_image: xcode11.3
|
||||||
compiler: clang
|
compiler: clang
|
||||||
|
|
||||||
# Windows builds
|
# Windows builds
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
dist: xenial
|
dist: bionic
|
||||||
|
|
||||||
# Minimal set of packages needed to compile EPICS Base
|
# Minimal set of packages needed to compile EPICS Base
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Five parallel runners on Linux/Windows (one runner on MacOS)
|
- Two parallel runners on Linux/Windows (two runners on MacOS)
|
||||||
|
- Ubuntu 14/16/18/20, MacOS 10.13/14/15, Windows Server v1809
|
||||||
- Use different compilers (gcc, clang)
|
- Use different compilers (gcc, clang)
|
||||||
- Use different gcc versions
|
- Use different gcc versions
|
||||||
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
- Cross-compile for Windows 32bit and 64bit using MinGW and WINE
|
||||||
- Cross-compile for RTEMS 4.9 and 4.10 (Base >= 3.15)
|
- Cross-compile for RTEMS 4.9 and 4.10 (pc386, Base >= 3.15)
|
||||||
|
- Cross-compile for RTEMS 5 (10 BSPs, Base >= 7.0.5.1)
|
||||||
- Compile natively on MacOS (clang)
|
- Compile natively on MacOS (clang)
|
||||||
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017)
|
- Compile natively on Windows (gcc/MinGW, Visual Studio 2017)
|
||||||
- Built dependencies are cached (for faster builds).
|
- Built dependencies are cached (for faster builds).
|
||||||
@@ -18,6 +20,10 @@
|
|||||||
repository. For more details, please refer to the
|
repository. For more details, please refer to the
|
||||||
[Travis-CI Tutorial](https://docs.travis-ci.com/user/tutorial/).
|
[Travis-CI Tutorial](https://docs.travis-ci.com/user/tutorial/).
|
||||||
Make sure to use `travis-ci.org` and not their `.com` site.
|
Make sure to use `travis-ci.org` and not their `.com` site.
|
||||||
|
|
||||||
|
(This applies when using the free tier offered to open source
|
||||||
|
projects. Things will be different using an "Enterprise"
|
||||||
|
installation on customer hardware.)
|
||||||
|
|
||||||
2. Add the ci-scripts respository as a Git Submodule
|
2. Add the ci-scripts respository as a Git Submodule
|
||||||
(see [README](../README.md) one level above).
|
(see [README](../README.md) one level above).
|
||||||
@@ -60,3 +66,9 @@ configuration.)
|
|||||||
|
|
||||||
Caches are automatically removed after approx. four weeks.
|
Caches are automatically removed after approx. four weeks.
|
||||||
Your jobs will have to rebuild them once in a while.
|
Your jobs will have to rebuild them once in a while.
|
||||||
|
|
||||||
|
## Miscellanea
|
||||||
|
|
||||||
|
To use the feature to extract `.zip`/`.7z` archives by setting
|
||||||
|
`*_HOOK` variables, the Linux and MacOS runners need the APT package
|
||||||
|
`p7zip-full` resp. the Homebrew package `p7zip` installed.
|
||||||
|
|||||||
Reference in New Issue
Block a user