-
-
Notifications
You must be signed in to change notification settings - Fork 18
92 lines (85 loc) · 2.22 KB
/
examples.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
name: Examples 📕
on:
push:
branches:
- 'master'
- 'dev'
paths-ignore:
- 'docs/**'
- '.github/ISSUE_TEMPLATE/*'
- '*.md'
- '*.nimble'
- '.gitignore'
- 'LICENSE'
- '**/FUNDING.yml'
- '**/gh-pages.yml'
- '**/tests.yml'
- '**/language_bindings.yml'
- '**/jvm_bindings.yml'
pull_request:
paths-ignore:
- 'docs/**'
- '.github/ISSUE_TEMPLATE/*'
- '*.md'
- '*.nimble'
- '.gitignore'
- 'LICENSE'
- '**/FUNDING.yml'
- '**/gh-pages.yml'
- '**/tests.yml'
- '**/language_bindings.yml'
- '**/jvm_bindings.yml'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
nim_version:
- '2.0.6'
env:
TIMEOUT_EXIT_STATUS: 124
steps:
- uses: actions/checkout@v4
- name: Install Nim 👑
run: |
sudo apt install xz-utils
curl https://nim-lang.org/download/nim-${{ matrix.nim_version }}-linux_x64.tar.xz --output nim.tar.xz
unxz nim.tar.xz
tar -xf nim.tar
sudo mkdir -p /home/.nimble
sudo mv -if nim-${{ matrix.nim_version }}/* /home/.nimble/
export PATH=/home/.nimble/bin:$PATH
nim -v
nimble refresh
nimble install -y
- name: Hello World 👋
run: |
export PATH=/home/.nimble/bin:$PATH
cd examples/hello_world/src
nim c -d:httpx main
cd ../../../
shell: bash
- name: TODO App ✅
run: |
export PATH=/home/.nimble/bin:$PATH
cd examples/todo/src
nim js --hints:off --warnings:off main
cd ../../../
shell: bash
- name: NimLang 👑
run: |
export PATH=/home/.nimble/bin:$PATH
cd examples/nimlang/src
nimble install highlightjs
nim js --hints:off --warnings:off main
cd ../../../
shell: bash
- name: Website 🌐
run: |
export PATH=/home/.nimble/bin:$PATH
cd examples/website/src
nim js --hints:off --warnings:off main
cd ../../../
shell: bash