Skip to content

Commit

Permalink
Update deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
menisisaac authored Oct 31, 2023
1 parent 86ba84c commit d8829ad
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ on:
pull_request: {}

jobs:
Build-Extension:
runs-on: ubuntu-latest
steps:
- name: Updates Packages
run: sudo apt-get update
- name: Install Scons
run: sudo apt-get -y install scons gcc-mingw-w64
- name: Install Compiler
run: yes | sudo apt-get install g++-mingw-w64-x86-64
- name: Get Repo
run: git clone --recurse-submodules https://github.com/James-Oswald/VirtualSlate.git
- name: Build Extension
run: cd VirtualSlate && scons platform=windows
- name: Upload Extension
uses: actions/upload-artifact@v3
with:
name: VirtualSlateBuildFiles
path: VirtualSlate
# Build-Extension:
# runs-on: ubuntu-latest
# steps:
# - name: Updates Packages
# run: sudo apt-get update
# - name: Install Scons
# run: sudo apt-get -y install scons gcc-mingw-w64
# - name: Install Compiler
# run: yes | sudo apt-get install g++-mingw-w64-x86-64
# - name: Get Repo
# run: git clone --recurse-submodules https://github.com/James-Oswald/VirtualSlate.git
# - name: Build Extension
# run: cd VirtualSlate && scons platform=windows
# - name: Upload Extension
# uses: actions/upload-artifact@v3
# with:
# name: VirtualSlateBuildFiles
# path: VirtualSlate
Build-Game:
runs-on: ubuntu-latest
needs: Build-Extension
#needs: Build-Extension
strategy:
matrix:
platform: [windows]
Expand All @@ -40,7 +40,7 @@ jobs:
name: VirtualSlate
preset: ${{ matrix.platform }}
debugMode: "false"
projectDir: "VirtualSlateBuildFiles/project"
projectDir: "VirtualSlate/VirtualSlate/project"
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit d8829ad

Please sign in to comment.