diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..9a48951 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,25 @@ + +name: Make F3DEX3 Binary File. + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: sudo apt install cmake build-essential + + - name: Get armips + run: git clone --recursive https://github.com/Kingcom/armips.git ; cd armips ; mkdir build && cd build ; cmake -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . + + - name: Make The Binary + run: make -j ARMIPS=armips/build/armips diff --git a/Makefile b/Makefile index dd579b0..09b78ff 100644 --- a/Makefile +++ b/Makefile @@ -210,4 +210,4 @@ clean: @rm -rf $(ALL_OUTPUT_DIRS) doc: - doxygen Doxyfile \ No newline at end of file + doxygen Doxyfile