Skip to content

Commit

Permalink
Ini
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan committed Feb 28, 2024
0 parents commit ec1a1dd
Show file tree
Hide file tree
Showing 9 changed files with 2,902 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build_nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ubuntu-latest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: "Build/Test" # contains slash so use quotes otherwise UB
run: |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_nix
chmod +x mkn
KLOG=3 ./mkn
python3 py.py
20 changes: 20 additions & 0 deletions .github/workflows/build_osx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: macos-latest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3

- name: "Build/Test" # contains slash so use quotes otherwise UB
run: |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_osx
chmod +x mkn
KLOG=3 ./mkn
python3 py.py
27 changes: 27 additions & 0 deletions .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: windows-latest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3

- uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64

- name: "Build/Test" # contains slash so use quotes otherwise UB
shell: cmd
env:
MKN_CL_PREFERRED: 1
run: | # /bin/link interferes with cl/link.exe
bash -c "rm /bin/link"
bash -c "curl -Lo mkn.exe https://github.com/mkn/mkn/releases/download/latest/mkn.exe"
bash -c "KLOG=3 ./mkn"
bash -c "python3 py.py"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
b
bin
share
17 changes: 17 additions & 0 deletions .sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"folders" :
[
{
"path" : "."
}
],
"settings" :
{
"ClangFormat" :
{
"binary" : "clang-format",
"format_on_save" : true,
"style" : "file"
}
}
}
Loading

0 comments on commit ec1a1dd

Please sign in to comment.