-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from s1204IT/main
Add build workflow
- Loading branch information
Showing
8 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
* text=auto | ||
*.docx binary | ||
*.pdf binary | ||
*.png binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/build.yml' | ||
- 'ExploitGSM_5_15_to_6_1/**' | ||
- 'ExploitGSM_6_5/**' | ||
- 'OffsetGenerator/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install libcap-dev | ||
run: sudo apt-get install -y libcap-dev | ||
|
||
- name: Compile ExploitGSM_5_15_to_6_1 | ||
run: | | ||
cmake ExploitGSM_5_15_to_6_1 -B ExploitGSM_5_15_to_6_1 | ||
cmake --build ExploitGSM_5_15_to_6_1 | ||
- name: Compile ExploitGSM_6_5 | ||
run: | | ||
cmake ExploitGSM_6_5 -B ExploitGSM_6_5 | ||
cmake --build ExploitGSM_6_5 | ||
- name: Compile OffsetGenerator | ||
run: | | ||
cmake OffsetGenerator -B OffsetGenerator | ||
cmake --build OffsetGenerator | ||
- name: Upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ExploitGSM | ||
path: | | ||
ExploitGSM_5_15_to_6_1/ExploitGSM | ||
ExploitGSM_6_5/ExploitGSM | ||
OffsetGenerator/OffsetGenerator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.