Skip to content

Commit

Permalink
ci: Reactivate simple jobs on push or pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoNumworks committed Jul 11, 2024
1 parent 42b5cc1 commit 35a8a17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
path: output/release/simulator/android/epsilon.apk
device:
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
if: ${{ github.event.inputs.device == 'true' }}
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.device == 'true' }}
strategy:
matrix:
model: [n0110, n0115, n0120]
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
path: output/release/simulator/windows/epsilon.exe
web:
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
if: ${{ github.event.inputs.web == 'true' }}
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.web == 'true' }}
steps:
- uses: numworks/setup-emscripten@latest
with:
Expand All @@ -125,7 +125,7 @@ jobs:
retention-days: 7
linux:
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
if: ${{ github.event.inputs.linux == 'true' }}
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.linux == 'true' }}
steps:
- uses: numworks/setup-llvm@latest
- uses: actions/checkout@v3
Expand Down

0 comments on commit 35a8a17

Please sign in to comment.