Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marco Perronet
rbf-trace
Commits
3d87ee68
Commit
3d87ee68
authored
Nov 15, 2021
by
Marco Perronet
Browse files
Merge branch 'master' of
https://gitlab.mpi-sws.org/perronet/rbf-trace
parents
ee95ae25
b971c137
Pipeline
#56959
passed with stages
in 1 minute and 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
3d87ee68
# This file is a template, and might need editing before it works on your project.
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Rust.gitlab-ci.yml
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image
:
"
rust:latest"
# Fetch submodules
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
before_script
:
-
apt-get update -yqq
-
apt-get install -yqq --no-install-recommends build-essential git cmake sudo python3 bison flex
stages
:
-
build
-
test
build-libs
:
stage
:
build
script
:
-
cd src/events_generation/binary_parser/lib
-
./build_libs.sh
build
:
stage
:
build
script
:
-
cargo build
test:cargo:
stage
:
test
script
:
-
echo "Done."
# - rustc --version && cargo --version # Print version info for debugging
# - cargo test --workspace --verbose # TODO use idiomatic tests
# TODO this won't work and should be done in an integration test instead
# test-tools:
# stage: test
# script:
# - cargo build
# - python3 scripts/evaluation/generate_workload.py --workload scripts/evaluation/workloads/uniprocessor_double/2_uni_double.json
# - sleep 1
# - ./src/tools/trace-sched-event -l 20
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment