Skip to content

Commit

Permalink
111
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaMisty committed Nov 10, 2023
1 parent 6724f63 commit 7f27a19
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,26 @@ on:

jobs:
build:
runs-on: self-hosted
runs-on: macos-latest
strategy:
matrix:
# provider: [TFP0, LIBKRW, LIBKERNRW]
provider: [TFP0, LIBKRW, LIBKERNRW]
provider: [LIBKRW] #[TFP0, LIBKRW, LIBKERNRW]

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Prepare Theos
uses: und3fined/theos-action@main # Randomblock1/theos-action@v1
uses: Randomblock1/theos-action@v1

- name: Build package
run: |
cp -rf include/* $THEOS/vendor/include/
rm -f packages/*
cp control.template control
if [[ ${{matrix.provider}} == TFP0 ]]; then
sed -i 's/,{{.depends}}//g' control
#sed -i 's/,{{.depends}}//g' control
USE_TFP0=1 make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
elif [[ ${{matrix.provider}} == LIBKRW ]]; then
sed -i 's/{{.depends}}/libkrw/g' control
Expand All @@ -38,9 +37,6 @@ jobs:
sed -i 's/{{.depends}}/libkernrw0/g' control
USE_LIBKERNRW=1 make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
fi
# env:
# DEVELOPER_DIR=/Applications/Xcode-11.7.app/Contents/Developer
# DEVELOPER_DIR: ${{ secrets.DEVELOPER_DIR_12 }}
- name: Publish artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 7f27a19

Please sign in to comment.