You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enter the provider directory and build the provider
22
21
23
22
```sh
24
-
$ nomad-driver-singularity
25
-
$ make dep
26
-
$ make build
23
+
cd nomad-driver-singularity
24
+
make dep
25
+
make build
27
26
```
28
27
29
-
Developing the Provider
30
-
---------------------------
28
+
## Developing the Provider
31
29
32
-
If you wish to contribute on the project, you'll first need [Go](http://www.golang.org) installed on your machine, and have have `singularity` installed.
30
+
If you wish to contribute on the project, you'll first need [Go](http://www.golang.org)
31
+
installed on your machine, and have have `singularity` installed.
32
+
33
+
To compile the provider, run `make build`.
34
+
This will build the provider and put the task driver binary under
35
+
the NOMAD plugin dir,
36
+
which by default is located under `<nomad-data-dir>/plugins/`.
33
37
34
-
To compile the provider, run `make build`. This will build the provider and put the task driver binary under the NOMAD plugin dir, which by deafult is located under `<nomad-data-dir>/plugins/`.
35
38
Check Nomad `-data-dir` and `-plugin-dir` flags for more information.
36
39
37
40
```sh
38
-
$ make build
41
+
make build
39
42
```
40
43
41
44
In order to test the provider, you can simply run `make test`.
0 commit comments