Skip to content

Commit

Permalink
git action
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Nov 2, 2024
1 parent d859b6f commit 0eed529
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
python-version: '3.12'
cache: 'pip'

- name: Install CMake
run: |
apt update -y
apt install -y cmake
shell: bash

# Update references
- name: Git Sumbodule Update
run: |
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,23 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'


- name: Install CMake
run: |
apt update -y
apt install -y cmake
shell: bash

# Update references
- name: Git Sumbodule Update
run: |
git config --global --add safe.directory /__w/C2LinuxImplant/C2LinuxImplant
git submodule update --init
- name: Get Conan
# You may pin to the exact commit or the version.
# uses: turtlebrowser/get-conan@c171f295f3f507360ee018736a6608731aa2109d
uses: turtlebrowser/get-conan@v1.2
run: |
python3 -m pip install conan
shell: bash

- name: Create default profile
run: conan profile detect
Expand Down

0 comments on commit 0eed529

Please sign in to comment.