Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
purescript-gargantext
Commits
2566af13
Verified
Commit
2566af13
authored
Apr 19, 2024
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CI] some more fixes
parent
57f7aaa6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
.gitlab-ci.yml
.gitlab-ci.yml
+3
-2
shell.nix
shell.nix
+10
-0
No files found.
.gitlab-ci.yml
View file @
2566af13
...
...
@@ -25,7 +25,7 @@ deps:
-
node_modules/
-
.spago/
script
:
-
nix-env -i git
#
- nix-env -i git
-
nix-shell shell.nix --run 'bun install --skip-builds'
test
:
...
...
@@ -40,6 +40,7 @@ test:
script
:
# find 0.14.5 purescript version here:
# https://lazamar.co.uk/nix-versions/
-
nix-env -i git
#- nix-env -i git
-
nix-shell shell.nix --run fix-bun
-
nix-shell shell.nix --run 'bun install --skip-builds'
-
nix-shell shell.nix --run test-ps
shell.nix
View file @
2566af13
...
...
@@ -2,6 +2,15 @@
let
easy-ps
=
import
./nix/easy-ps.nix
{
inherit
pkgs
;
};
# sometimes bun is broken because of better-sqlite3
fix-bun
=
pkgs
.
writeShellScriptBin
"fix-bun"
''
#!/usr/bin/env bash
set -e
cd ./node_modules/better-sqlite3
bun install
''
;
compile
=
pkgs
.
writeShellScriptBin
"compile"
''
#!/usr/bin/env bash
set -e
...
...
@@ -115,6 +124,7 @@ pkgs.mkShell {
build-zephyr
build
compile
fix-bun
minify-bundle
repl
serve
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment