Merge pull request #3 from tazjin/chore/pin-travis-nix
Pin Nix version in Travis builds
This commit is contained in:
commit
3a4d8544fe
7 changed files with 1 additions and 95 deletions
|
@ -1,4 +1,5 @@
|
||||||
language: nix
|
language: nix
|
||||||
|
nix: 2.2.2
|
||||||
env:
|
env:
|
||||||
- NIX_PATH="nixpkgs=${TRAVIS_BUILD_DIR}"
|
- NIX_PATH="nixpkgs=${TRAVIS_BUILD_DIR}"
|
||||||
before_script:
|
before_script:
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
with import <nixpkgs> {};
|
|
||||||
let
|
|
||||||
gemma = import ./default.nix;
|
|
||||||
entrypoint = writeScript "entrypoint.sh" ''
|
|
||||||
#!${stdenv.shell}
|
|
||||||
set -e
|
|
||||||
exec ${gemma}/bin/gemma
|
|
||||||
'';
|
|
||||||
in dockerTools.buildImage {
|
|
||||||
name = "gemma";
|
|
||||||
contents = gemma; # [ gemma ];
|
|
||||||
config = {
|
|
||||||
Entrypoint = [ entrypoint ];
|
|
||||||
WorkingDir = "/data";
|
|
||||||
Volumes = {
|
|
||||||
"/data" = {};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
7
services/tazblog/.gitignore
vendored
7
services/tazblog/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
*.o
|
|
||||||
*.hi
|
|
||||||
BlogState/
|
|
||||||
dist/
|
|
||||||
.cabal-sandbox/
|
|
||||||
*.tar.gz
|
|
||||||
.stack-work/
|
|
|
@ -1,20 +0,0 @@
|
||||||
steps:
|
|
||||||
- imports:
|
|
||||||
align: group
|
|
||||||
- language_pragmas:
|
|
||||||
style: vertical
|
|
||||||
remove_redundant: true
|
|
||||||
- records: {}
|
|
||||||
- trailing_whitespace: {}
|
|
||||||
columns: 120
|
|
||||||
language_extensions:
|
|
||||||
- DeriveDataTypeable
|
|
||||||
- FlexibleContexts
|
|
||||||
- GeneralizedNewtypeDeriving
|
|
||||||
- MultiParamTypeClasses
|
|
||||||
- OverloadedStrings
|
|
||||||
- RecordWildCards
|
|
||||||
- ScopedTypeVariables
|
|
||||||
- TemplateHaskell
|
|
||||||
- TypeFamilies
|
|
||||||
- QuasiQuotes
|
|
|
@ -1,49 +0,0 @@
|
||||||
@charset "UTF-8";
|
|
||||||
/* CSS Document */
|
|
||||||
|
|
||||||
body {
|
|
||||||
padding-top: 20px;
|
|
||||||
font-family: 'PT Sans', sans-serif;
|
|
||||||
background-image: linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
|
|
||||||
background-image: -o-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
|
|
||||||
background-image: -webkit-linear-gradient(bottom, rgb(245,245,245) 66%, rgb(239,239,239) 83%);
|
|
||||||
background-image: -webkit-gradient(
|
|
||||||
linear,
|
|
||||||
left bottom,
|
|
||||||
left top,
|
|
||||||
color-stop(0.66, rgb(245,245,245)),
|
|
||||||
color-stop(0.83, rgb(239,239,239))
|
|
||||||
);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-color: rgb(245,245,245);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loginBox {
|
|
||||||
width: 400px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loginBoxTop {
|
|
||||||
width: 380px;
|
|
||||||
height: 28px;
|
|
||||||
color: #FFFFFF;
|
|
||||||
font-size: 12px;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-top: 11px;
|
|
||||||
background: url(/static/loginBoxTop.png);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loginBoxMiddle {
|
|
||||||
background-color: #F3F3F3;
|
|
||||||
border-top: 0px hidden;
|
|
||||||
border:1px solid #D2D2D2;
|
|
||||||
border-bottom-left-radius: 12px;
|
|
||||||
border-bottom-right-radius: 12px;
|
|
||||||
text-align: center;
|
|
||||||
font-size:12px;
|
|
||||||
height:auto;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
min-height:200px;
|
|
||||||
width:378px;
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 606 B |
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB |
Loading…
Add table
Reference in a new issue