File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 24
24
- name : Checkout submodules
25
25
run : git submodule update --init --recursive
26
26
- name : Build Docker images
27
- run : docker- compose build
27
+ run : docker compose build
28
28
- name : Run C++ tests
29
29
run : docker run --rm qsim-cxx-tests:latest
30
30
- name : Run Python tests
34
34
- name : Test install process
35
35
run : |
36
36
cd install/tests
37
- docker- compose up --build
37
+ docker compose up --build
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ git submodule update --init --recursive
19
19
To build qsim and run all the tests:
20
20
21
21
```
22
- # docker- compose up --build
22
+ # docker compose up --build
23
23
```
24
24
25
- ` docker- compose ` will create the ` qsim ` , ` qsim-cxx-tests ` , and ` qsim-py-tests `
25
+ ` docker compose ` will create the ` qsim ` , ` qsim-cxx-tests ` , and ` qsim-py-tests `
26
26
images and automatically run all tests. A successful run should have the
27
27
following messages somewhere in the logs:
28
28
@@ -34,7 +34,7 @@ qsim-py-tests exited with code 0
34
34
To build without running tests, simply run:
35
35
36
36
```
37
- # docker- compose build
37
+ # docker compose build
38
38
```
39
39
40
40
## Run Simulations
You can’t perform that action at this time.
0 commit comments