2022-02-02 20:03:38 +00:00
|
|
|
name: Nightly
|
2022-02-02 19:07:27 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
paths:
|
|
|
|
- 'src/**'
|
|
|
|
- 'scripts/**'
|
2022-02-16 15:09:27 +00:00
|
|
|
- 'poly/**'
|
2022-04-12 17:40:20 +00:00
|
|
|
- '.github/workflows/**'
|
2022-02-02 19:07:27 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-04-12 17:45:23 +00:00
|
|
|
name: Build
|
2022-02-02 19:07:27 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node.js v16.x
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
|
|
|
|
- name: Pack base asar
|
|
|
|
run: |
|
2022-02-02 20:03:38 +00:00
|
|
|
npm i -g asar
|
2022-02-02 19:07:27 +00:00
|
|
|
bash scripts/injectPolyfills.sh
|
|
|
|
sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js
|
2022-02-07 08:17:04 +00:00
|
|
|
node scripts/strip.js
|
2022-02-02 19:07:27 +00:00
|
|
|
npx asar pack src app.asar
|
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: built-asar
|
|
|
|
path: app.asar
|
|
|
|
retention-days: 1
|
|
|
|
|
2022-04-12 17:45:23 +00:00
|
|
|
|
|
|
|
test-linux:
|
|
|
|
name: Test Linux
|
|
|
|
|
2022-02-02 19:07:27 +00:00
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Retrieve artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: built-asar
|
2022-02-02 19:22:58 +00:00
|
|
|
path: artifact
|
|
|
|
|
|
|
|
- name: Extract artifact
|
|
|
|
run: |
|
|
|
|
cp artifact/app.asar .
|
2022-02-02 19:07:27 +00:00
|
|
|
|
|
|
|
- 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: Check if Discord will startup
|
|
|
|
run: |
|
2022-02-06 21:33:04 +00:00
|
|
|
coproc { xvfb-run -e /dev/stdout ./DiscordCanary/DiscordCanary --enable-logging; }
|
|
|
|
grep -m1 "Installing discord_rpc" <&${COPROC[0]}
|
|
|
|
sleep 1
|
|
|
|
[[ $COPROC_PID ]] && kill $COPROC_PID
|
2022-04-13 08:54:20 +00:00
|
|
|
timeout-minutes: 2
|
2022-04-12 17:45:23 +00:00
|
|
|
|
2022-04-16 21:39:07 +00:00
|
|
|
debug-linux:
|
|
|
|
name: Debug Linux
|
|
|
|
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Retrieve artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: built-asar
|
|
|
|
path: artifact
|
|
|
|
|
|
|
|
- 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: Run Client
|
|
|
|
run: |
|
2022-04-16 23:09:25 +00:00
|
|
|
xvfb-run -e /dev/stdout ./DiscordCanary/DiscordCanary --enable-logging 2>&1
|
2022-04-16 21:39:07 +00:00
|
|
|
timeout-minutes: 2
|
|
|
|
|
2022-04-16 21:41:52 +00:00
|
|
|
debug-win:
|
|
|
|
name: Debug Windows
|
|
|
|
|
|
|
|
needs: build
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- 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: Extract artifact
|
|
|
|
run: |
|
|
|
|
cp artifact/app.asar .
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- name: Run Client
|
|
|
|
run: |
|
|
|
|
cd discord/app-1.0.0
|
|
|
|
./DiscordCanary.exe --enable-logging
|
|
|
|
timeout-minutes: 2
|
|
|
|
shell: bash
|
|
|
|
|
2022-04-12 18:11:21 +00:00
|
|
|
test-win:
|
|
|
|
name: Test Windows
|
|
|
|
|
|
|
|
needs: build
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2022-04-12 20:40:32 +00:00
|
|
|
- name: Setup Node.js v16.x
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
|
2022-04-12 18:11:21 +00:00
|
|
|
- name: Retrieve artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: built-asar
|
|
|
|
path: artifact
|
2022-04-12 20:40:32 +00:00
|
|
|
|
|
|
|
- name: Extract artifact
|
|
|
|
run: |
|
|
|
|
cp artifact/app.asar .
|
|
|
|
|
|
|
|
- name: Setup Client
|
2022-04-12 21:00:59 +00:00
|
|
|
shell: bash
|
2022-04-12 20:40:32 +00:00
|
|
|
run: |
|
2022-04-12 20:54:31 +00:00
|
|
|
node scripts/downloadWin.js
|
|
|
|
tar xf client.tar
|
2022-04-12 20:40:32 +00:00
|
|
|
|
|
|
|
# Install OpenAsar build and setup environment
|
2022-04-13 08:28:14 +00:00
|
|
|
sed -r -i "s/const config=require\('.\/config'\);/console.log\('ABRA'\);app.quit\(\); /" app.asar
|
2022-04-13 08:42:41 +00:00
|
|
|
sed -r -i "s/if\(next!=cur&&!options\?\.allowObsoleteHost\)/if\(false\) /" app.asar
|
2022-04-12 21:26:12 +00:00
|
|
|
cp -f app.asar files/resources/app.asar
|
2022-04-12 20:40:32 +00:00
|
|
|
mkdir discord
|
|
|
|
cp -rf files/ discord/app-1.0.0
|
|
|
|
cd discord/app-1.0.0
|
2022-04-12 21:46:27 +00:00
|
|
|
mkdir modules
|
2022-04-12 20:40:32 +00:00
|
|
|
|
2022-04-13 08:00:12 +00:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: testing
|
|
|
|
path: app.asar
|
|
|
|
retention-days: 1
|
|
|
|
|
2022-04-12 20:40:32 +00:00
|
|
|
- name: Check if Discord will startup
|
|
|
|
run: |
|
2022-04-12 21:11:18 +00:00
|
|
|
cd discord/app-1.0.0
|
2022-04-13 08:44:47 +00:00
|
|
|
./DiscordCanary.exe | grep -m1 "ABRA"
|
2022-04-13 08:54:20 +00:00
|
|
|
timeout-minutes: 2
|
2022-04-12 21:11:18 +00:00
|
|
|
shell: bash
|
2022-04-12 18:11:21 +00:00
|
|
|
|
2022-04-12 17:45:23 +00:00
|
|
|
|
2022-02-02 19:07:27 +00:00
|
|
|
release:
|
2022-04-12 17:45:23 +00:00
|
|
|
name: Release
|
2022-04-12 21:33:25 +00:00
|
|
|
needs:
|
|
|
|
- test-linux
|
|
|
|
- test-win
|
2022-02-02 19:07:27 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Retrieve artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: built-asar
|
2022-02-02 19:27:09 +00:00
|
|
|
path: artifact
|
|
|
|
|
|
|
|
- name: Extract artifact
|
|
|
|
run: |
|
|
|
|
cp artifact/app.asar .
|
2022-02-02 19:07:27 +00:00
|
|
|
|
|
|
|
- name: GitHub Release
|
|
|
|
run: |
|
2022-02-15 20:28:55 +00:00
|
|
|
git tag -d nightly || true
|
|
|
|
git push origin --delete nightly || true
|
2022-02-02 19:07:27 +00:00
|
|
|
git tag nightly
|
|
|
|
git push origin nightly
|
2022-02-15 20:09:28 +00:00
|
|
|
gh release delete ${{ env.VERSION }} -y || true
|
2022-02-15 20:04:58 +00:00
|
|
|
gh release create ${{ env.VERSION }} -t "Nightly" -n "$(git rev-parse HEAD | cut -c 1-7) | $(git log -1 --pretty=%B)" ${{ env.FILES }}
|
2022-02-02 19:07:27 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|
2022-04-12 17:40:20 +00:00
|
|
|
VERSION: 'nightly'
|
2022-02-03 23:06:49 +00:00
|
|
|
FILES: app.asar
|