OpenAsar/.github/workflows/nightly.yml

147 lines
3.5 KiB
YAML
Raw Normal View History

2022-02-02 20:03:38 +00:00
name: Nightly
on:
push:
branches: [ main ]
paths:
- 'src/**'
- 'scripts/**'
- 'poly/**'
2022-04-12 17:40:20 +00:00
- '.github/workflows/**'
jobs:
build:
name: Build
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
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
npx asar pack src app.asar
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: built-asar
path: app.asar
retention-days: 1
test-linux:
name: Test Linux
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 .
- 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
timeout-minutes: 3
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
run: |
# Download latest client from updater v2 and extract (manifest -> brotli -> tar)
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
sed -i "s/^\/\/ <TEST_FLAG_WINDOWS>.*$/if \(name == 'discord_rpc'\) { console.log\('ABRA'\); process.exit\(\); }/" app.asar
cp -f app.asar files/resources/app.asar
mkdir discord
cp -rf files/ discord/app-1.0.0
cd discord/app-1.0.0
- name: Check if Discord will startup
run: |
./DiscordCanary.exe | grep -m1 "ABRA"
timeout-minutes: 3
2022-04-12 18:11:21 +00:00
release:
name: Release
needs: test-linux
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: GitHub Release
run: |
git tag -d nightly || true
git push origin --delete nightly || true
git tag nightly
git push origin nightly
gh release delete ${{ env.VERSION }} -y || true
gh release create ${{ env.VERSION }} -t "Nightly" -n "$(git rev-parse HEAD | cut -c 1-7) | $(git log -1 --pretty=%B)" ${{ env.FILES }}
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
2022-04-12 17:40:20 +00:00
VERSION: 'nightly'
FILES: app.asar