Skip to content

ChicoState/Guesser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GuesserTest

Getting Started

Prerequisites:

  • Docker (*nix) or Docker Desktop (Windows/Mac)
  • *nix-based Command Line Environment (i.e. WSL2 on Windows)

With Docker running, execute the following commands in order.

This will generate the container image. It needs to be run each time the container configuration changes.

docker build -t cpp-container .

This will use the current code, attempt to build it, and run its tests within the container. If you change the code (and not the container configuration), you only need to repeat this command.

docker run -v "$(pwd)":/usr/src -it cpp-container

To run commands within the container interactively, use:

docker run -v "$(pwd)":/usr/src -it cpp-container sh

and then type commands (e.g. make clean, make, ./GuesserTest, gcov, etc.) at the # prompt.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors