From 27ce130e1919995d8fe65f510bfe4d6d1e3a95a0 Mon Sep 17 00:00:00 2001 From: Margen67 Date: Mon, 29 Jun 2020 08:14:51 -0700 Subject: [PATCH] Create CI.yml --- .github/workflows/CI.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..d891fda --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,33 @@ +name: CI + +on: + push: + paths-ignore: + - 'porting notes.txt' + - 'README.md' + pull_request: + paths-ignore: + - 'porting notes.txt' + - 'README.md' + +jobs: + build: + runs-on: ubuntu-latest + container: ps2dev/ps2dev + strategy: + fail-fast: false + matrix: + version: ['3.10EU', '3.11E', '3.11J'] + steps: + - uses: actions/checkout@v2 + - name: Build + working-directory: PAYLOADS/PAYLOAD_${{ matrix.version }} + run: | + chmod +x build.sh + ./build.sh + - name: Generate iso + run: genisoimage -udf -o exploit.iso ${{ matrix.version }} + - uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.version }} + path: exploit.iso