aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: ab0db69c88a0451e68c2ea27293c95fbc8ff04c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: CI
env:
  ODIN_BRANCH: master

on:
  push:
    branches: ["master"]
    paths-ignore: ["**/*.md"]
  pull_request:
    branches: ["master"]
    paths-ignore: ["**/*.md"]
  # Allow to run this workflow manually from the Actions tab.
  workflow_dispatch:

jobs:
  windows:
    strategy:
      matrix:
        os: [windows-latest]
      fail-fast: false
    runs-on: ${{ matrix.os }}
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@v4
      - name: Download Odin
        shell: cmd
        run: |
          git clone --depth 1 --branch %ODIN_BRANCH% https://github.com/odin-lang/Odin
      - name: Build Odin
        shell: cmd
        run: |
          call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
          cd Odin
          ./build.bat 1
      - name: Build ols
        shell: cmd
        run: ./ci.bat CI
  linux:
    strategy:
      matrix:
        os: [ubuntu-latest]
      fail-fast: false
    runs-on: ${{ matrix.os }}
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@v4
      - name: Setup Dependencies
        run: |
          wget https://apt.llvm.org/llvm.sh
          chmod +x llvm.sh
          sudo ./llvm.sh 17
          echo "/usr/lib/llvm-17/bin" >> $GITHUB_PATH
      - name: Build Odin
        run: |
          git clone --depth 1 --branch $ODIN_BRANCH https://github.com/odin-lang/Odin
          cd Odin && ./build_odin.sh release
      - name: Build ols
        run: ./ci.sh CI

  macos:
    strategy:
      matrix:
        os: [macos-latest]
      fail-fast: false
    runs-on: ${{ matrix.os }}
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@v4
      - name: Setup Dependencies
        run: |
          brew install llvm@17
          echo "/usr/local/opt/llvm@17/bin" >> $GITHUB_PATH
          TMP_PATH=$(xcrun --show-sdk-path)/user/include
          echo "CPATH=$TMP_PATH" >> $GITHUB_ENV
      - name: Build Odin
        run: |
          git clone --depth 1 --branch $ODIN_BRANCH https://github.com/odin-lang/Odin
          cd Odin && ./build_odin.sh release
      - name: Build ols
        run: ./ci.sh CI