Skip to content

Commit

Permalink
gah just inline it lol
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Nov 14, 2023
1 parent a290d1c commit 70078ca
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions .github/workflows/build_and_test_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ jobs:
run: go build -o ./bin/ github.com/crazy-max/xgo

- name: Build Linux Client
run: npm run action electron/build linux
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH }}
run: PATH="$(pwd)/bin:$PATH" npm run action electron/build linux

windows_debug_build:
name: Windows Debug Build
Expand Down Expand Up @@ -106,9 +104,7 @@ jobs:
run: go build -o ./bin/ github.com/crazy-max/xgo

- name: Build Windows Client
run: npm run action electron/build windows
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH }}
run: PATH="$(pwd)/bin:$PATH" npm run action electron/build windows

macos_debug_build:
name: MacOS Debug Build
Expand Down Expand Up @@ -143,9 +139,7 @@ jobs:
run: npm run action cordova/test macos

- name: Build MacOS Client
run: npm run action cordova/build macos
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH}}
run: PATH="$(pwd)/bin:$PATH" npm run action cordova/build macos

- uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -186,9 +180,7 @@ jobs:
run: npm run action cordova/test ios

- name: Build iOS Client
run: npm run action cordova/build ios
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH }}
run: PATH="$(pwd)/bin:$PATH" npm run action cordova/build ios

- uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -229,9 +221,7 @@ jobs:
run: npm run action cordova/test maccatalyst

- name: Build Mac Catalyst Client
run: npm run action cordova/build maccatalyst
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH }}
run: PATH="$(pwd)/bin:$PATH" npm run action cordova/build maccatalyst

- uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -274,6 +264,4 @@ jobs:
run: bash ./tools/build/setup_linux_android.sh

- name: Build Android Client
run: npm run action cordova/build android -- --verbose
env:
PATH: ${{ github.workspace }}/bin:${{ env.PATH }}
run: PATH="$(pwd)/bin:$PATH" npm run action cordova/build android -- --verbose

0 comments on commit 70078ca

Please sign in to comment.