-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 1009 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: build
on:
push:
branches: [ "master" ]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- name: Donwload dependencies
run: |
Invoke-WebRequest https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-win64.zip -OutFile nasm.zip
Invoke-WebRequest https://deac-riga.dl.sourceforge.net/project/gnuwin32/grep/2.5.4/grep-2.5.4-bin.zip -OutFile grep.zip
Invoke-WebRequest https://master.dl.sourceforge.net/project/gnuwin32/grep/2.5.4/grep-2.5.4-dep.zip?viasf=1 -OutFile grep-dep.zip
mkdir nasm
mkdir grep
unzip nasm.zip nasm-2.16.01/nasm.exe -d nasm
unzip grep.zip bin/grep.exe -d grep
unzip grep-dep.zip bin/* -d grep
mv grep/bin/* .
mv nasm/nasm-2.16.01/nasm.exe ./nasm.exe
- name: Assemble injections
shell: cmd
run: |
mkdir bin
make src/inc/injections.inc