[CI > Debug] Disable
This commit is contained in:
parent
d2b98ab9ab
commit
6779829c04
1 changed files with 58 additions and 58 deletions
116
.github/workflows/nightly.yml
vendored
116
.github/workflows/nightly.yml
vendored
|
@ -71,79 +71,79 @@ jobs:
|
|||
[[ $COPROC_PID ]] && kill $COPROC_PID
|
||||
timeout-minutes: 3
|
||||
|
||||
debug-linux:
|
||||
name: Debug Linux
|
||||
# debug-linux:
|
||||
# name: Debug Linux
|
||||
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
# needs: build
|
||||
# runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
|
||||
- name: Retrieve artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: built-asar
|
||||
path: artifact
|
||||
# - name: Retrieve artifact
|
||||
# uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# name: built-asar
|
||||
# path: artifact
|
||||
|
||||
- name: Extract artifact
|
||||
run: |
|
||||
cp artifact/app.asar .
|
||||
# - name: Extract artifact
|
||||
# run: |
|
||||
# cp artifact/app.asar .
|
||||
|
||||
- name: Download Client with OpenAsar
|
||||
run: |
|
||||
wget "https://discord.com/api/download/canary?platform=linux&format=tar.gz" -O discord.tar.gz
|
||||
tar xf discord.tar.gz
|
||||
cp app.asar DiscordCanary/resources/app.asar
|
||||
# - name: Download Client with OpenAsar
|
||||
# run: |
|
||||
# wget "https://discord.com/api/download/canary?platform=linux&format=tar.gz" -O discord.tar.gz
|
||||
# tar xf discord.tar.gz
|
||||
# cp app.asar DiscordCanary/resources/app.asar
|
||||
|
||||
- name: Run Client
|
||||
run: |
|
||||
xvfb-run -e /dev/stdout ./DiscordCanary/DiscordCanary --enable-logging 2>&1
|
||||
timeout-minutes: 5
|
||||
# - name: Run Client
|
||||
# run: |
|
||||
# xvfb-run -e /dev/stdout ./DiscordCanary/DiscordCanary --enable-logging 2>&1
|
||||
# timeout-minutes: 5
|
||||
|
||||
debug-win:
|
||||
name: Debug Windows
|
||||
# debug-win:
|
||||
# name: Debug Windows
|
||||
|
||||
needs: build
|
||||
runs-on: windows-latest
|
||||
# needs: build
|
||||
# runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node.js v16.x
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 16.x
|
||||
# - name: Setup Node.js v16.x
|
||||
# uses: actions/setup-node@v2
|
||||
# with:
|
||||
# node-version: 16.x
|
||||
|
||||
- name: Retrieve artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: built-asar
|
||||
path: artifact
|
||||
# - name: Retrieve artifact
|
||||
# uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# name: built-asar
|
||||
# path: artifact
|
||||
|
||||
- name: Extract artifact
|
||||
run: |
|
||||
cp artifact/app.asar .
|
||||
# - name: Extract artifact
|
||||
# run: |
|
||||
# cp artifact/app.asar .
|
||||
|
||||
- name: Setup Client
|
||||
shell: bash
|
||||
run: |
|
||||
node scripts/downloadWin.js
|
||||
tar xf client.tar
|
||||
# - name: Setup Client
|
||||
# shell: bash
|
||||
# run: |
|
||||
# node scripts/downloadWin.js
|
||||
# tar xf client.tar
|
||||
|
||||
# Install OpenAsar build and setup environment
|
||||
cp -f app.asar files/resources/app.asar
|
||||
mkdir discord
|
||||
cp -rf files/ discord/app-1.0.0
|
||||
cd discord/app-1.0.0
|
||||
mkdir modules
|
||||
# # Install OpenAsar build and setup environment
|
||||
# cp -f app.asar files/resources/app.asar
|
||||
# mkdir discord
|
||||
# cp -rf files/ discord/app-1.0.0
|
||||
# cd discord/app-1.0.0
|
||||
# mkdir modules
|
||||
|
||||
- name: Run Client
|
||||
run: |
|
||||
cd discord/app-1.0.0
|
||||
./DiscordCanary.exe --enable-logging
|
||||
timeout-minutes: 5
|
||||
shell: bash
|
||||
# - name: Run Client
|
||||
# run: |
|
||||
# cd discord/app-1.0.0
|
||||
# ./DiscordCanary.exe --enable-logging
|
||||
# timeout-minutes: 5
|
||||
# shell: bash
|
||||
|
||||
test-win:
|
||||
name: Test Windows
|
||||
|
|
Loading…
Reference in a new issue