File tree 5 files changed +18
-18
lines changed
5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
29
29
authToken : ${{ secrets.CACHIX_AUTH_TOKEN }}
30
30
31
31
- name : Build
32
- run : nix-shell --run "nxpg -v ${{ matrix.pg-version }} build"
32
+ run : nix-shell --run "xpg -v ${{ matrix.pg-version }} build"
33
33
34
34
- name : Run tests
35
- run : nix-shell --run "nxpg -v ${{ matrix.pg-version }} test"
35
+ run : nix-shell --run "xpg -v ${{ matrix.pg-version }} test"
36
36
37
37
- if : ${{ failure() }}
38
38
run : cat regression.diffs
@@ -59,10 +59,10 @@ jobs:
59
59
authtoken : ${{ secrets.cachix_auth_token }}
60
60
61
61
- name : build
62
- run : nix-shell --run "nxpg -v ${{ matrix.pg-version }} build"
62
+ run : nix-shell --run "xpg -v ${{ matrix.pg-version }} build"
63
63
64
64
- name : run tests
65
- run : nix-shell --run "nxpg -v ${{ matrix.pg-version }} test"
65
+ run : nix-shell --run "xpg -v ${{ matrix.pg-version }} test"
66
66
67
67
- if : ${{ failure() }}
68
68
run : cat regression.diffs
89
89
authToken : ${{ secrets.CACHIX_AUTH_TOKEN }}
90
90
91
91
- name : Coverage
92
- run : nix-shell --run "nxpg -v ${{ matrix.pg-version }} coverage"
92
+ run : nix-shell --run "xpg -v ${{ matrix.pg-version }} coverage"
93
93
94
94
- name : Send coverage to Coveralls
95
95
uses :
coverallsapp/[email protected]
Original file line number Diff line number Diff line change @@ -291,5 +291,5 @@ $ supautils-with-pg-13 psql -U rolecreator
291
291
For coverage, execute:
292
292
293
293
``` bash
294
- $ supautils-with-pg-17 nxpg -coverage
294
+ $ supautils-with-pg-17 xpg -coverage
295
295
```
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ { fetchFromGitHub , lib } :
2
+ let
3
+ dep = fetchFromGitHub {
4
+ owner = "steve-chavez" ;
5
+ repo = "xpg" ;
6
+ rev = "v1.2" ;
7
+ sha256 = "sha256-7sP+exW5CSh8c9NW4f8yr4bLcN5hJDxU5eWa8PjoNZA=" ;
8
+ } ;
9
+ xpg = ( import dep ) . xpg ;
10
+ in
11
+ xpg
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ with import (builtins.fetchTarball {
5
5
} ) { } ;
6
6
mkShell {
7
7
buildInputs = [
8
- ( callPackage ./nix/nxpg .nix { inherit fetchFromGitHub ; } )
8
+ ( callPackage ./nix/xpg .nix { inherit fetchFromGitHub ; } )
9
9
] ;
10
10
}
You can’t perform that action at this time.
0 commit comments