mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 21:58:01 +00:00
2fb8beee62
This PR changes the CI build scripts to also build LLVM for windows. **It doesn't build `revive` itself for windows**. This will come in a follow up. But once we have a LLVM binary release the turn around time will be much quicker for experimenting with the revive windows build. I manually uploaded the release those changes produce [here](https://github.com/paritytech/revive-alex-workflowtest/releases/tag/llvm-18.1.8-revive.22f3ceb). This enables this PR's CI to find the proper release. This is necessary because I am also making changes to the folder structure and artifact naming that the other CI jobs are depending on. Releases generated from this branch can be inspected here: https://github.com/paritytech/revive-alex-workflowtest/releases/tag/v0.1.0-dev.12 Summary of changes: - Change `llvm-builder` to use MSVC toolchain on windows - Fix `llvm-builder` to work with `.exe` files - Unify the llvm release jobs into a single one. This removed a lot of copy pasted code and also speeds up the build by giving each their own runner. - Use the LLVM target triple to name the binary releases instead of an ad-hoc naming convention - Remove the nested folder hierarchy inside the llvm release. Its just now a single folder `llvm-<target>` that contains the toolchain. - Give jobs and workflows consistent names - Replace all runners bei their `*-latest` counterpart - Only use `parity-large` to build llvm now. All other jobs use github runners
99 lines
2.5 KiB
YAML
99 lines
2.5 KiB
YAML
name: Test Wasm Version
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
types: [opened, synchronize]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
REVIVE_WASM_INSTALL_DIR: ${{ github.workspace }}/target/wasm32-unknown-emscripten/release
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-24.04
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
with:
|
|
target: wasm32-unknown-emscripten
|
|
# without this it will override our rust flags
|
|
rustflags: ""
|
|
|
|
- name: Download Host LLVM
|
|
uses: ./.github/actions/get-llvm
|
|
with:
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
- name: Download Wasm LLVM
|
|
uses: ./.github/actions/get-llvm
|
|
with:
|
|
target: wasm32-unknown-emscripten
|
|
|
|
- name: Install emsdk
|
|
uses: ./.github/actions/get-emsdk
|
|
|
|
- name: Set LLVM Environment Variables
|
|
run: |
|
|
echo "LLVM_SYS_181_PREFIX=$(pwd)/llvm-x86_64-unknown-linux-gnu" >> $GITHUB_ENV
|
|
echo "REVIVE_LLVM_TARGET_PREFIX=$(pwd)/llvm-wasm32-unknown-emscripten" >> $GITHUB_ENV
|
|
|
|
- name: Build Revive
|
|
run: |
|
|
source emsdk/emsdk_env.sh
|
|
make install-wasm
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: revive-wasm
|
|
path: |
|
|
${{ env.REVIVE_WASM_INSTALL_DIR }}/resolc.js
|
|
${{ env.REVIVE_WASM_INSTALL_DIR }}/resolc.wasm
|
|
${{ env.REVIVE_WASM_INSTALL_DIR }}/resolc_web.js
|
|
retention-days: 1
|
|
|
|
test:
|
|
needs: build
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create Target Directory
|
|
run: mkdir -p ${{ env.REVIVE_WASM_INSTALL_DIR }}
|
|
|
|
- name: Download Artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: revive-wasm
|
|
path: ${{ env.REVIVE_WASM_INSTALL_DIR }}
|
|
|
|
- name: Set Up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20"
|
|
|
|
- name: Install Node Packages
|
|
run: npm install
|
|
|
|
- name: Run Playwright tests
|
|
run: |
|
|
cd js
|
|
npx playwright install --with-deps
|
|
npx playwright test
|
|
|
|
- name: Test revive
|
|
run: |
|
|
echo "Running tests for ${{ matrix.os }}"
|
|
npm run test:wasm
|