mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Merge branch 'master' of https://github.com/odin-lang/Odin
This commit is contained in:
+19
-17
@@ -2,24 +2,27 @@ name: CI
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_unix:
|
build_linux:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macOS-latest]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: (macOS) Download LLVM and setup PATH
|
- name: Download LLVM
|
||||||
if: startsWith(matrix.os, 'macOS')
|
run: sudo apt-get install llvm
|
||||||
|
- name: build odin
|
||||||
|
run: make release
|
||||||
|
- name: Odin run
|
||||||
|
run: ./odin run examples/demo/demo.odin
|
||||||
|
- name: Odin check
|
||||||
|
run: ./odin check examples/demo/demo.odin -vet
|
||||||
|
build_macOS:
|
||||||
|
runs-on: macOS-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Download LLVM and setup PATH
|
||||||
run: |
|
run: |
|
||||||
brew install llvm
|
brew install llvm
|
||||||
echo ::add-path::/usr/local/opt/llvm/bin
|
echo ::add-path::/usr/local/opt/llvm/bin
|
||||||
echo ::set-env name=CPATH::`xcrun --show-sdk-path`/usr/include
|
echo ::set-env name=CPATH::`xcrun --show-sdk-path`/usr/include
|
||||||
- name: (Linux) Download LLVM
|
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
run: |
|
|
||||||
sudo apt-get install llvm
|
|
||||||
- name: build odin
|
- name: build odin
|
||||||
run: make release
|
run: make release
|
||||||
- name: Odin run
|
- name: Odin run
|
||||||
@@ -30,14 +33,13 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Install cURL
|
|
||||||
run: choco install curl
|
|
||||||
- name: Download and unpack LLVM bins
|
- name: Download and unpack LLVM bins
|
||||||
shell: cmd
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
cd bin
|
cd bin
|
||||||
curl -sL https://github.com/odin-lang/Odin/releases/download/llvm-windows/llvm-binaries.zip --output llvm-binaries.zip
|
$ProgressPreference = "SilentlyContinue";
|
||||||
7z x llvm-binaries.zip > nul
|
Invoke-WebRequest -Uri https://github.com/odin-lang/Odin/releases/download/llvm-windows/llvm-binaries.zip -OutFile llvm-binaries.zip
|
||||||
|
7z x llvm-binaries.zip > $null
|
||||||
- name: build Odin
|
- name: build Odin
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user