Skip to content

Commit 69fa39f

Browse files
committed
switch from fornix to xome
replaces the commands/ + settings/ fornix setup with a xome flake and run/ scripts, matching better-perl-syntax and better-nix-syntax. two deviations from those repos: - python3 instead of python2, because python2 fails to build on aarch64-darwin (gnu patch OOMs from the builder's unlimited nofile) - node-gyp 10 as a devDependency, since textmate-tester hoists node-gyp 4 which refuses python3 when compiling oniguruma
1 parent 06f4011 commit 69fa39f

177 files changed

Lines changed: 2740 additions & 9325 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Ž.github/workflows/main.ymlβ€Ž

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,21 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Setup Node.js for use with actions
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v4
2525
with:
26-
node-version: 10.x
26+
node-version: 18.x
2727
- name: Setup Ruby for use with actions
28-
uses: eregon/use-ruby-action@v1
28+
uses: ruby/setup-ruby@v1
2929
with:
30-
ruby-version: 2.6
30+
ruby-version: 2.7
3131
- name: test
3232
run: |
3333
gem install bundler
3434
bundler install
3535
npm ci
36-
export FORNIX_FOLDER="$PWD"
37-
commands/project/build
38-
commands/project/test
36+
run/build
37+
run/test
3938
env:
4039
CI: true

β€Ž.gitignoreβ€Ž

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -602,13 +602,6 @@ dkms.conf
602602
# Executables
603603
*.out
604604

605-
#
606-
# home folder files
607-
#
608-
# ignore files in folder foo
609-
settings/path_injection/*
610-
# but keep the folder
611-
!settings/path_injection/.keep
612605
# ignore files in folder foo
613606
settings/.cache/*
614607
# but keep the folder

β€Ž.vscode/tasks.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"label": "build",
88
"type": "shell",
9-
"command": "./commands/project/build"
9+
"command": "./run/build"
1010
}
1111
]
1212
}

β€Žcommands/pipβ€Ž

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Žcommands/project/buildβ€Ž

Lines changed: 0 additions & 4 deletions
This file was deleted.

β€Žcommands/project/build_and_testβ€Ž

Lines changed: 0 additions & 3 deletions
This file was deleted.

β€Žcommands/project/cleanβ€Ž

Lines changed: 0 additions & 12 deletions
This file was deleted.

β€Žcommands/project/commandsβ€Ž

Lines changed: 0 additions & 17 deletions
This file was deleted.

β€Žcommands/project/publishβ€Ž

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€Žcommands/project/purgeβ€Ž

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
Β (0)