Release procedure: Difference between revisions

From Aquarium-Control
Jump to navigation Jump to search
Line 37: Line 37:


== Unit-testing on target hardware and OS ==
== Unit-testing on target hardware and OS ==
Create message queues
Create message queues by running the script <code>create_mqueues.sh</code>.
Executing the unit tests on Linux allows for additional tests to be executed which require the Linux operating system, e.g. testing the messaging subsystem.
Furthermore, different hardware specifications may impact the execution timing of test cases.
Executing the tests again on the combination of target hardware and target operating system is worthwhile. Execution duration is not significantly higher than on any development platform.


== Testing with simulator ==
== Testing with simulator ==

Revision as of 21:25, 29 July 2025

Execution environment

Create lock file

Create the path and the lockfile, e.g. sudo touch /var/local/aquarium-ctrl.pid, as per configuration file. Assign access rights using chmod o+rw filename so that non-root user (during testing) can use the resources as well.

Create log file

Create the path and the logfile sudo touch /var/log/aquarium.log. Assign access rights using chmod o+rw filename so that non-root user (during testing) can use the resources as well.

Create output files on RAM disk

Create the path and the output files e.g., sudo touch /var/local/aquarium-ctrl/aquarium-ctrl-ts as stated in the .toml configuration file(s). Make sure the path yields to the RAM-disk. Assign access rights using chmod o+rw * so that non-root user (during testing) can use the resources as well.

Unit-testing on development machine

Run the unit tests using cargo test and analyse the results. Currently there are more than 150 unit tests which run in multiple threads. Testing takes multiple minutes. If all tests pass, proceed to next step.

Update version identifier

In Cargo.toml, update the version string in the section [package].

Update database

The update version information needs to be inserted into the version table of the database together with the hash of the executable. You can obtain the hash by running aquarium_control -v.

When you edit the database with the mysql terminal client, you proceed as following:

  • Select the database using use aquarium;
  • Display the current version information using select * from version;
  • Insert the new version information using insert into version values (0, 3, 0); - adapt major, minor and build number accordingly.

Compilation for testing on target hardware and OS

Run cargo build

Unit-testing on target hardware and OS

Create message queues by running the script create_mqueues.sh. Executing the unit tests on Linux allows for additional tests to be executed which require the Linux operating system, e.g. testing the messaging subsystem. Furthermore, different hardware specifications may impact the execution timing of test cases. Executing the tests again on the combination of target hardware and target operating system is worthwhile. Execution duration is not significantly higher than on any development platform.

Testing with simulator

Analyse terminal output

Observe RAM consumption

Compilation for production on target hardware and OS

Run cargo build --features "target_hw" --release. If you utilise the Controllino to actuate the relays, run cargo build --features "target_hw, controllino_hw" --release.

Note: The build takes several minutes on a Raspberry Pi.

Transfer the binary from target/release to your desired installation location, e.g. /usr/local/bin/.

Update of production configuration file

The default storage location of the configuration file is /etc/aquarium_control/config/aquarium_control.toml. If other command line parameter is provided, the program will default to this file. Ensure this file is updated with all entries as required by the control application. If any section or field is missing, the control application will not start up.

Transfer of binary and update of startup script

Documentation of release in repository