-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
12 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
.github/workflows/build.yml → .github/workflows/ubuntu-build.yml
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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Windows - Build Examples | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
name: Windows - Build Examples | ||
runs-on: windows-latest | ||
steps: | ||
- name: Download source | ||
uses: actions/checkout@v2 | ||
- name: Install scoop 1 | ||
run: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | ||
- name: Install scoop 2 | ||
run: irm get.scoop.sh -outfile 'install.ps1' | ||
- name: Install scoop 3 | ||
run: .\install.ps1 -RunAsAdmin | ||
- name: Install crystal 1 | ||
run: C:\Users\runneradmin\scoop\shims\scoop.cmd bucket add crystal-preview https://github.com/neatorobito/scoop-crystal | ||
- name: Install crystal 2 | ||
run: C:\Users\runneradmin\scoop\shims\scoop.cmd install vs_2022_cpp_build_tools | ||
- name: Install crystal 3 | ||
run: C:\Users\runneradmin\scoop\shims\scoop.cmd install crystal | ||
- name: shards install | ||
run: C:\Users\runneradmin\scoop\shims\shards install | ||
- name: Setup VS Dev Environment | ||
uses: seanmiddleditch/gha-setup-vsdevenv@v4 | ||
- name: raylib-cr post-install | ||
run: powershell lib/raylib-cr/rsrc/install-lib.ps1 | ||
- name: set env | ||
run: | | ||
echo ("LIB=" + $env:LIB + ";" + $pwd + "\libs") >> $env:GITHUB_ENV | ||
echo ("PATH=" + $env:PATH + ";" + $pwd + "\libs") >> $env:GITHUB_ENV | ||
- name: check env | ||
run: | | ||
echo $env:LIB | ||
echo $env:PATH | ||
- name: Build examples | ||
run: crystal run rsrc/build-examples/build.cr |
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