Skip to content

avoid irrelevant c_str() #131

avoid irrelevant c_str()

avoid irrelevant c_str() #131

Workflow file for this run

name: test deterministic operation
on:
push:
branches:
- main
- devel
pull_request:
jobs:
build:
name: Runs the deterministic operation test
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: install packages
run: sudo apt install build-essential nettle-dev time disorderfs
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure CXXFLAGS=-std=c++17
- name: make
run: make
- name: run determinism test
run: testcases/verify_deterministic_operation.sh
- name: store logs as artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
path: '**/*.log'