본문 바로가기

WEB

github local actions(act) 사용해봄

  • 회사에서 ci test를 실행할 떄마다 비용이 발생하기 떄문에 local에서 github action을 사용할 수 있는지 검색해봤다
  • act라는 프로젝트가 있었고 vscode에서 github local actions extension(act를 vscode에서 사용할 수 있도록 함)을 사용해서 테스트를 할 수 있었다.
  • 데모 파일을 clone해서 cli와 extension을 사용해봤다.

  • 사용할 때 느낀점
    • 터미널의 cwd에 .github/workflows 디렉토리가 존재하지 않는다면 인식을 하지 못한다.
      • ex
        • private/github-actions-demo/.github/workflows path인 상황에서 터미널의 cwd가 private라면 인식을 하지 못한다.
      • 설정에서 수정가능한지 확인해봐야겠다.
        • 설정에서는 할 수 없더라.
    • mac에서 사용할 컨테이너의 프로그램이 amd64아키텍처라면 컨테이너를 create할 때 —container-architecture linux/amd64 로 지정해야하는데 이를 자동화 할수 있나?
      • cli로 act를 사용할 때에는 alias를 .zshrc에 등록해서 사용했었다.
      • 설정에서 act 커맨드를 act --container-architecture linux/amd64 로 변경하면 된다.

 

  • 다음에는 Secrets, Variables, Inputs등을 활용해서 사용해봐야겠다.
  • 익숙해지면 회사에서 사용되는 github action의 비용을 절감할 수 있을 것 같다.

 

Reference

https://github.com/cplee/github-actions-demo

https://sanjulaganepola.github.io/github-local-actions-docs/

https://nektosact.com/usage/index.html?highlight=-j#jobs

 

Usage guide - act - User Guide | Manual | Docs | Documentation

act has basic event support, it will try to get as much information from local repository as possible, although this might be not enough for certain event types. Running act without any event name specified will run with event push. For a list of event nam

nektosact.com

 

 

GitHub Local Actions

✨ Run your GitHub Actions locally!

sanjulaganepola.github.io

 

 

GitHub - cplee/github-actions-demo: Demonstration of GitHub Actions

Demonstration of GitHub Actions. Contribute to cplee/github-actions-demo development by creating an account on GitHub.

github.com