联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp

您当前位置:首页 >> Python编程Python编程

日期:2019-06-03 11:11

ECS34 SQ19 April 5, 2019

Development Workflow Guide

1 of 21

Development Workflow Guide

This is a quick guide to help you understand the typical development workflow. Students will

typically develop either locally on their machine and synch using SFTP or will make edits on the

CSIF with and editor such as VIM or Emacs. Some students will physically go to the CSIF and

login to the machines as well. You will want to use one of the following steps:

Local Editing with File Synchronization

Remote Editing via VIM or Emacs

Physical Access to CSIF

Local Editing with File Synchronization

Local editing with file synchronization means that you will have a copy of the development files

both on your local machine and on the CSIF. This allows for you to use a graphical editor with

syntax highlighting and possibly code completion. (NOTE: It may be possible to have your

editing tool like Visual Studio Code automatically do the synchronization for you with every

save, but that capability is beyond the scope of this guide.) The typical steps you might use for

this type of development are:

1. Download the given files from Canvas.

2. Decompress the given files (this step may different for Windows or Mac)

Windows

a) Open the tgz file with IZarc, 7Zip, or etc.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

2 of 21

b) Extract the files you may be asked if you want to decompress the tar archive.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

3 of 21

c) You should have the folder decompressed.

Mac

a) Move the tgz file to where you want to extract it.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

4 of 21

b) Double click on the file and the Archive Utility should decompress it there.

3. Upload the development files to the CSIF (this step will depend on SFTP client)

ECS34 SQ19 April 5, 2019

Development Workflow Guide

5 of 21

4. Make edits to the code using your preferred editor and save them.

5. Upload the changed files

ECS34 SQ19 April 5, 2019

Development Workflow Guide

6 of 21

6. Build your new code on the CSIF. Make sure you are in the directory with the Makefile,

and type make.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

7 of 21

7. If the doesn’t build, or the tests that are run fail, then go back to step 4. If it builds and

you want to test your program. Run it with something like: ./bin/proj1, or whatever

the name of the program is.

8. If your program doesn’t work as you expected, go back to step 4, if everything looks

good, then you are done programming and will need to package everything up for

submission.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

8 of 21

Remote Editing via VIM or Emacs

Remote editing via VIM or Emacs means that you will have your source code on the CSIF. This

allows you to make edits, save them and then test without having to upload the changes each

time. The typical steps you might use for this type of development are:

1. Download the given files from Canvas.

2. Decompress the given files (this step may different for Windows or Mac)

Windows

a) Open the tgz file with IZarc, 7Zip, or etc.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

9 of 21

b) Extract the files you may be asked if you want to decompress the tar archive.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

10 of 21

c) You should have the folder decompressed.

Mac

a) Move the tgz file to where you want to extract it.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

11 of 21

b) Double click on the file and the Archive Utility should decompress it there.

3. Upload the development files to the CSIF (this step will depend on SFTP client)

ECS34 SQ19 April 5, 2019

Development Workflow Guide

12 of 21

4. Login to the CSIF

.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

13 of 21

5. Change into the directory where you put your files, and where your Makefile is.

6. Open the either VIM or Emacs and make edits to the file you want to change.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

14 of 21

7. Build your new code on the CSIF. Make sure you are in the directory with the Makefile,

and type make.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

15 of 21

8. If the doesn’t build, or the tests that are run fail, then go back to step 6. If it builds and

you want to test your program. Run it with something like: ./bin/proj1, or whatever

the name of the program is.

9. If your program doesn’t work as you expected, go back to step 6, if everything looks

good, then you are done programming and will need to package everything up for

submission.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

16 of 21

Physical Access to CSIF

Physical access to a CSIF machine is similar to remote editing via VIM or Emacs, but instead of

connecting via SSH you will be opening a terminal on the machine. This allows you to make

edits, save them and then test without having to upload the changes each time. The typical steps

you might use for this type of development are:

1. Login to the machine and launch firefox.

2. Download the given files from Canvas.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

17 of 21

3. Move the files to where you want to use them.

4. Open a terminal.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

18 of 21

5. Decompress the given files. IMPORTANT: DO NOT DOUBLE CLICK ON THE

TGZ FILE TO DECOMPRESS IT! You will use the tar command with -xzvf

option to decompress it. It will be of the form tar -xzvf file.tgz where

file.tgz is the file you want to decompress.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

19 of 21

6. From this point forward, you will be doing the same thing as with remote editing, but

instead of SSH connection, you have you own terminal. The images below are duplicates

from the Remote Editing via VIM or Emacs.

7. Change into the directory where you put your files, and where your Makefile is.

8. Open the either VIM or Emacs and make edits to the file you want to change.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

20 of 21

9. Build your new code on the CSIF. Make sure you are in the directory with the Makefile,

and type make.

ECS34 SQ19 April 5, 2019

Development Workflow Guide

21 of 21

10. If the doesn’t build, or the tests that are run fail, then go back to step 8. If it builds and

you want to test your program. Run it with something like: ./bin/proj1, or whatever

the name of the program is.

11. If your program doesn’t work as you expected, go back to step 8, if everything looks

good, then you are done programming and will need to package everything up for

submission.


版权所有:编程辅导网 2021 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp