13 Commits

Author SHA1 Message Date
ae20111e42 correct simulation
All checks were successful
Example Action / Lint (push) Successful in 8s
Example Action / BuildAndTest (push) Successful in 10m10s
2025-07-04 15:41:01 +02:00
6e88505799 move name
Some checks failed
Example Action / Lint (push) Successful in 2s
Example Action / BuildAndTest (push) Failing after 9m38s
2025-07-04 15:04:28 +02:00
7764e2184e readds test
Some checks failed
Example Action / Lint (push) Successful in 3s
Example Action / BuildAndTest (push) Has been cancelled
2025-07-04 14:56:56 +02:00
4ebe12da29 Remove old pipeline yaml
All checks were successful
Example Action / Lint (push) Successful in 3s
Example Action / Build (push) Successful in 3s
2025-07-04 12:22:29 +02:00
8f16888b68 try and build project
All checks were successful
Example Action / Lint (push) Successful in 3s
Example Action / Build (push) Successful in 4s
2025-07-04 12:13:18 +02:00
2a75f9ec3c retrieve code
Some checks failed
Example Action / Lint (push) Failing after 1s
Example Action / Build (push) Failing after 1s
2025-07-04 12:08:50 +02:00
0d09282c9a retrieve code
All checks were successful
Example Action / Lint (push) Successful in 3s
Example Action / Build (push) Successful in 2s
2025-07-04 12:07:34 +02:00
47228b0b5b retrieve code
Some checks failed
Example Action / Lint (push) Failing after 10s
Example Action / Build (push) Failing after 1s
2025-07-04 11:41:28 +02:00
c44056176f Run linting commands
Some checks failed
Example Action / Lint (push) Failing after 1s
Example Action / Build (push) Successful in 1s
2025-07-04 11:34:19 +02:00
c0ac01b3d6 Run linting commands
Some checks failed
Example Action / Lint (push) Failing after 1s
Example Action / Build (push) Successful in 1s
2025-07-04 11:33:18 +02:00
44d4b83a80 can I use a custom image?
All checks were successful
Example Action / Example-Actions (push) Successful in 35s
2025-07-04 11:24:32 +02:00
653d3e238d inital gitea action
All checks were successful
Example Action / Example-Actions (push) Successful in 16s
2025-07-04 09:10:25 +02:00
2770cd80da Description too long 2025-06-17 16:19:38 +02:00
6 changed files with 40 additions and 74 deletions

View File

@ -0,0 +1,27 @@
name: Example Action
on: [push]
jobs:
Lint:
runs-on: linepics
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: cppcheck
run: cppcheck --std=c++17 --addon=cert --addon=misc --error-exitcode=1 src/*.cpp
- name: formatting
run: clang-format --style=file --Werror --dry-run src/*.cpp
BuildAndTest:
runs-on: linepics
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: build
run: |
sed -i 's/ARCH_FILTER=.*/ARCH_FILTER=linux%/' Makefile
echo "LIBVERSION=${CI_COMMIT_TAG:-0.0.1}" >> Makefile
make install
- name: test
run: |
cd test
python3 test.py

View File

@ -1,61 +0,0 @@
default:
image: docker.psi.ch:5000/sinqdev/sinqepics:latest
stages:
- lint
- build
- test
cppcheck:
stage: lint
script:
- cppcheck --std=c++17 --addon=cert --addon=misc --error-exitcode=1 src/*.cpp
artifacts:
expire_in: 1 week
tags:
- sinq
formatting:
stage: lint
script:
- clang-format --style=file --Werror --dry-run src/*.cpp
artifacts:
expire_in: 1 week
tags:
- sinq
# clangtidy:
# stage: lint
# script:
# - curl https://docker.psi.ch:5000/v2/_catalog
# # - dnf update -y
# # - dnf install -y clang-tools-extra
# # - clang-tidy sinqEPICSApp/src/*.cpp sinqEPICSApp/src/*.c sinqEPICSApp/src/*.h -checks=cppcoreguidelines-*,cert-*
# # tags:
# # - sinq
build_module:
stage: build
script:
- sed -i 's/ARCH_FILTER=.*/ARCH_FILTER=linux%/' Makefile
- echo "LIBVERSION=${CI_COMMIT_TAG:-0.0.1}" >> Makefile
- make install
- cp -rT "/ioc/modules/counterbox/$(ls -U /ioc/modules/counterbox/ | head -1)" "./counterbox-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}"
artifacts:
name: "counterbox-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}"
paths:
- "counterbox-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}/*"
expire_in: 1 week
when: always
tags:
- sinq
test_module:
stage: test
script:
- mkdir -p "/ioc/modules/counterbox"
- cp -rT "./counterbox-${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}" "/ioc/modules/counterbox/${CI_COMMIT_TAG:-0.0.1}"
- python3 test/test.py
when: always
tags:
- sinq

View File

@ -50,7 +50,7 @@ record(longout, "$(INSTR)$(NAME):C$(CHANNEL)")
record(ao,"$(INSTR)$(NAME):THRESH$(CHANNEL)") record(ao,"$(INSTR)$(NAME):THRESH$(CHANNEL)")
{ {
field(DESC, "Sets minimum rate for counting to proceed") field(DESC, "Sets min rate for counting to proceed")
field(OMSL, "supervisory") field(OMSL, "supervisory")
field(OROC, "0") field(OROC, "0")
field(OUT, "@$(PROTO) setMinRate($(INSTR)$(NAME):, $(CHANNEL)) $(ASYN_PORT)") field(OUT, "@$(PROTO) setMinRate($(INSTR)$(NAME):, $(CHANNEL)) $(ASYN_PORT)")

View File

@ -13,9 +13,10 @@ initialise {
in; in;
out "ECHO 2"; # Ask for reponses out "ECHO 2"; # Ask for reponses
in "%(\$1MsgTxt)s"; # Clear MsgTxt on Init in "%(\$1MsgTxt)s"; # Clear MsgTxt on Init
@mismatch{ # Probably should cause the ioc to just exit
exec 'echo "Failed to configure DAQ" && exit(1)'; # @mismatch{
} # exec 'echo "Failed to configure DAQ" && exit(1)';
# }
} }
fullReset { fullReset {

View File

@ -35,7 +35,7 @@ class DAQ:
self.monitor = 0 self.monitor = 0
self.minratechannel = 0 self.minratechannel = 0
self.minrates = [2] * self.total_channels self.minrates = [2] * (self.total_channels + 1)
self.gate_config = [ self.gate_config = [
#(enabled, count high/low), #(enabled, count high/low),
@ -92,7 +92,7 @@ class DAQ:
if self.countmode == 'time': if self.countmode == 'time':
if elapsed < self.presettime: if elapsed < self.presettime:
if self.minratechannel >= 0 and self.rates[self.minratechannel] < self.minrates[self.minratechannel]: if self.minratechannel > 0 and self.rates[self.minratechannel - 1] < self.minrates[self.minratechannel]:
# adjust the starttime, so that it is as if this polling period didn't happen # adjust the starttime, so that it is as if this polling period didn't happen
self.starttime += elapsed - self.elapsed self.starttime += elapsed - self.elapsed
self.status = 5 self.status = 5
@ -115,7 +115,7 @@ class DAQ:
elif self.countmode == 'count': elif self.countmode == 'count':
if self.getMonitorCount() < self.presetcount: if self.getMonitorCount() < self.presetcount:
if self.minratechannel >= 0 and self.rates[self.minratechannel] < self.minrates[self.minratechannel]: if self.minratechannel > 0 and self.rates[self.minratechannel - 1] < self.minrates[self.minratechannel]:
# adjust the starttime, so that it is as if this polling period didn't happen # adjust the starttime, so that it is as if this polling period didn't happen
self.starttime += elapsed - self.elapsed self.starttime += elapsed - self.elapsed
self.status = 5 self.status = 5
@ -171,16 +171,16 @@ class DAQ:
return float(self.rates[channel - 1]) return float(self.rates[channel - 1])
def getMinRateChannel(self): def getMinRateChannel(self):
return self.minratechannel + 1 return self.minratechannel
def setMinRateChannel(self, channel): def setMinRateChannel(self, channel):
self.minratechannel = channel - 1 self.minratechannel = channel
def getMinRate(self, channel): def getMinRate(self, channel):
return self.minrates[channel - 1] return self.minrates[channel]
def setMinRate(self, channel, rate): def setMinRate(self, channel, rate):
self.minrates[channel - 1] = rate self.minrates[channel] = rate
def getGateStatus(self, channel): def getGateStatus(self, channel):
return self.gate_config[channel - 1] return self.gate_config[channel - 1]

View File

@ -6,9 +6,8 @@ require sinqDAQ
epicsEnvSet("STREAM_PROTOCOL_PATH","./db") epicsEnvSet("STREAM_PROTOCOL_PATH","./db")
epicsEnvSet("INSTR","SQ:TEST:") epicsEnvSet("INSTR","SQ:TEST:")
epicsEnvSet("NAME","CB_TEST")
epicsEnvSet("SET_SIM_MODE","") # Run Simulation Instead of Actual Interface epicsEnvSet("SET_SIM_MODE","") # Run Simulation Instead of Actual Interface
runScript "$(sinqDAQ_DIR)daq_2nd_gen.cmd" "DAQ_IP=127.0.0.1, DAQ_PORT=2000" runScript "$(sinqDAQ_DIR)daq_2nd_gen.cmd" "NAME=CB_TEST, DAQ_IP=127.0.0.1, DAQ_PORT=2000"
iocInit() iocInit()