-
-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Extend the docker test to include diffing against normal builds
- Loading branch information
1 parent
35630c3
commit 6a54822
Showing
1 changed file
with
64 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,45 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Generate version seal | ||
env: | ||
ENABLE_VERSION_SEAL: true | ||
working-directory: ./web | ||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: stable | ||
targets: wasm32-unknown-unknown | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
registry-url: https://registry.npmjs.org | ||
|
||
- name: Install wasm-bindgen | ||
run: cargo install wasm-bindgen-cli --version 0.2.91 | ||
|
||
- name: Setup conda | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
activate-environment: binaryen | ||
|
||
- name: Install binaryen | ||
shell: bash -l {0} | ||
run: conda install -c conda-forge binaryen | ||
|
||
- name: Install fclones | ||
run: cargo install fclones | ||
|
||
- name: Install node packages | ||
working-directory: web | ||
shell: bash -l {0} | ||
run: | | ||
npm install | ||
node packages/core/tools/set_version.js | ||
npm ci | ||
- name: Seal version data | ||
shell: bash -l {0} | ||
working-directory: web | ||
env: | ||
ENABLE_VERSION_SEAL: "true" | ||
run: npm run version-seal | ||
|
||
- name: Build Docker image with Ruffle in it | ||
run: docker build --tag ruffle-web-docker -f web/docker/Dockerfile . | ||
|
@@ -33,6 +65,32 @@ jobs: | |
- name: Check that the Firefox extension was built | ||
run: test -f web/docker/docker_builds/packages/extension/dist/firefox_unsigned.xpi | ||
|
||
- name: Build web normally | ||
working-directory: web | ||
shell: bash -l {0} | ||
run: npm run build:repro | ||
|
||
- name: Compare the two extensions | ||
run: | | ||
mkdir firefox_extensions | ||
mkdir firefox_extensions/docker_build | ||
mkdir firefox_extensions/normal_build | ||
unzip -d firefox_extensions/normal_build "./web/packages/extension/dist/firefox_unsigned.xpi" | ||
unzip -d firefox_extensions/docker_build "./web/docker/docker_builds/packages/extension/dist/firefox_unsigned.xpi" | ||
fclones group --unique firefox_extensions/normal_build firefox_extensions/docker_build -o result.txt -f fdupes | ||
fclones group --unique firefox_extensions/normal_build firefox_extensions/docker_build -o firefox_extensions/differences.txt | ||
cat result.txt | ||
- name: Check that the comparison was identical | ||
run: test -s firefox_extensions/result.txt | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
if: ${{ always() }} | ||
with: | ||
name: result | ||
path: firefox_extensions/ | ||
|
||
- name: Notify Discord | ||
uses: th0th/[email protected] | ||
if: ${{ always() && github.repository == 'ruffle-rs/ruffle' }} | ||
|