Skip to content

Commit

Permalink
ci build script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
prikolium-cfx committed May 17, 2024
2 parents 0c21f5f + 56e7a3a commit 4b83593
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 35 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: V8 Build CI

on:
workflow_dispatch:

jobs:
build:
runs-on: windows-2022

steps:
- name: Support longpaths
run: git config --global core.longpaths true

- name: Checkout code
uses: actions/checkout@v3
with:
submodules: 'recursive'

- name: Prepare Depot and build V8
working-directory: ${{ github.workspace }}
run: |
.\build\prepare-depot.ps1 && .\build\build.ps1
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release_build
path: build_results/*.lib

- name: Create draft release
uses: softprops/action-gh-release@v2
with:
draft: true
name: ${{ format('build-{0}', github.run_id) }}
tag_name: ${{ format('build-{0}', github.run_id) }}
files: build_results/*.lib
35 changes: 0 additions & 35 deletions build/build.ps1.bak

This file was deleted.

0 comments on commit 4b83593

Please sign in to comment.