Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 4348091

Browse files
author
Tarides Pipeline
committed
Deploy 16ec54420209f1c87a62df59177bbe45ab576e1d
1 parent 7fe5375 commit 4348091

57 files changed

Lines changed: 554 additions & 507 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.

blog/cicd-pipeline/index.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="CI/CD Pipelines: Monad, Arrow or Dart" />
12-
<meta property="og:description" content="In this post I describe three approaches to building a language for writing CI/CD pipelines. My first attempt used a monad, but this prevented static analysis of the pipelines. I then tried using an arrow, but found the syntax very difficult to use&hellip;" />
13-
<meta property="og:type" content="article" />
14-
<meta property="og:url" content="https://www.ocurrent.org/blog/cicd-pipeline/" /><meta property="article:section" content="blog" />
15-
<meta property="article:published_time" content="2019-11-14T00:00:00+00:00" />
16-
<meta property="article:modified_time" content="2019-11-14T00:00:00+00:00" />
11+
<meta property="og:url" content="https://www.ocurrent.org/blog/cicd-pipeline/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="CI/CD Pipelines: Monad, Arrow or Dart">
14+
<meta property="og:description" content="In this post I describe three approaches to building a language for writing CI/CD pipelines. My first attempt used a monad, but this prevented static analysis of the pipelines. I then tried using an arrow, but found the syntax very difficult to use…">
15+
<meta property="og:locale" content="en_us">
16+
<meta property="og:type" content="article">
17+
<meta property="article:section" content="blog">
18+
<meta property="article:published_time" content="2019-11-14T00:00:00+00:00">
19+
<meta property="article:modified_time" content="2019-11-14T00:00:00+00:00">
1720

1821
<link
1922
rel="stylesheet"

blog/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="OCurrent Blog" />
12-
<meta property="og:description" content="A compilation of the blog posts written around OCurrent." />
13-
<meta property="og:type" content="website" />
14-
<meta property="og:url" content="https://www.ocurrent.org/blog/" />
11+
<meta property="og:url" content="https://www.ocurrent.org/blog/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="OCurrent Blog">
14+
<meta property="og:description" content="A compilation of the blog posts written around OCurrent.">
15+
<meta property="og:locale" content="en_us">
16+
<meta property="og:type" content="website">
1517

1618
<link
1719
rel="stylesheet"

blog/index.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@
44
<title>OCurrent Blog on OCurrent</title>
55
<link>https://www.ocurrent.org/blog/</link>
66
<description>Recent content in OCurrent Blog on OCurrent</description>
7-
<generator>Hugo -- gohugo.io</generator>
7+
<generator>Hugo</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Thu, 14 Nov 2019 00:00:00 +0000</lastBuildDate><atom:link href="https://www.ocurrent.org/blog/index.xml" rel="self" type="application/rss+xml" />
9+
<lastBuildDate>Thu, 14 Nov 2019 00:00:00 +0000</lastBuildDate>
10+
<atom:link href="https://www.ocurrent.org/blog/index.xml" rel="self" type="application/rss+xml" />
1011
<item>
1112
<title>CI/CD Pipelines: Monad, Arrow or Dart</title>
1213
<link>https://www.ocurrent.org/blog/cicd-pipeline/</link>
1314
<pubDate>Thu, 14 Nov 2019 00:00:00 +0000</pubDate>
14-
1515
<guid>https://www.ocurrent.org/blog/cicd-pipeline/</guid>
1616
<description>In this post I describe three approaches to building a language for writing CI/CD pipelines. My first attempt used a monad, but this prevented static analysis of the pipelines. I then tried using an arrow, but found the syntax very difficult to use&amp;hellip;</description>
1717
</item>
18-
1918
</channel>
2019
</rss>

categories/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="Categories" />
12-
<meta property="og:description" content="" />
13-
<meta property="og:type" content="website" />
14-
<meta property="og:url" content="https://www.ocurrent.org/categories/" />
11+
<meta property="og:url" content="https://www.ocurrent.org/categories/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="Categories">
14+
<meta property="og:locale" content="en_us">
15+
<meta property="og:type" content="website">
1516

1617
<link
1718
rel="stylesheet"

categories/index.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<title>Categories on OCurrent</title>
55
<link>https://www.ocurrent.org/categories/</link>
66
<description>Recent content in Categories on OCurrent</description>
7-
<generator>Hugo -- gohugo.io</generator>
8-
<language>en-us</language><atom:link href="https://www.ocurrent.org/categories/index.xml" rel="self" type="application/rss+xml" />
7+
<generator>Hugo</generator>
8+
<language>en-us</language>
9+
<atom:link href="https://www.ocurrent.org/categories/index.xml" rel="self" type="application/rss+xml" />
910
</channel>
1011
</rss>

community/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="OCurrent Community" />
12-
<meta property="og:description" content="Want to find us ? Chat with us ? This is the place you need." />
13-
<meta property="og:type" content="website" />
14-
<meta property="og:url" content="https://www.ocurrent.org/community/" />
11+
<meta property="og:url" content="https://www.ocurrent.org/community/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="OCurrent Community">
14+
<meta property="og:description" content="Want to find us ? Chat with us ? This is the place you need.">
15+
<meta property="og:locale" content="en_us">
16+
<meta property="og:type" content="website">
1517

1618
<link
1719
rel="stylesheet"

community/index.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<title>OCurrent Community on OCurrent</title>
55
<link>https://www.ocurrent.org/community/</link>
66
<description>Recent content in OCurrent Community on OCurrent</description>
7-
<generator>Hugo -- gohugo.io</generator>
8-
<language>en-us</language><atom:link href="https://www.ocurrent.org/community/index.xml" rel="self" type="application/rss+xml" />
7+
<generator>Hugo</generator>
8+
<language>en-us</language>
9+
<atom:link href="https://www.ocurrent.org/community/index.xml" rel="self" type="application/rss+xml" />
910
</channel>
1011
</rss>

docs/conf-and-papers/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="Conferences &amp; Papers" />
12-
<meta property="og:description" content="" />
13-
<meta property="og:type" content="website" />
14-
<meta property="og:url" content="https://www.ocurrent.org/docs/conf-and-papers/" />
11+
<meta property="og:url" content="https://www.ocurrent.org/docs/conf-and-papers/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="Conferences & Papers">
14+
<meta property="og:locale" content="en_us">
15+
<meta property="og:type" content="website">
1516

1617
<link
1718
rel="stylesheet"

docs/conf-and-papers/index.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@
44
<title>Conferences &amp; Papers on OCurrent</title>
55
<link>https://www.ocurrent.org/docs/conf-and-papers/</link>
66
<description>Recent content in Conferences &amp; Papers on OCurrent</description>
7-
<generator>Hugo -- gohugo.io</generator>
7+
<generator>Hugo</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Fri, 28 Aug 2020 00:00:00 +0000</lastBuildDate><atom:link href="https://www.ocurrent.org/docs/conf-and-papers/index.xml" rel="self" type="application/rss+xml" />
9+
<lastBuildDate>Fri, 28 Aug 2020 00:00:00 +0000</lastBuildDate>
10+
<atom:link href="https://www.ocurrent.org/docs/conf-and-papers/index.xml" rel="self" type="application/rss+xml" />
1011
<item>
1112
<title>OCaml-CI: A Zero-Configuration CI</title>
1213
<link>https://www.ocurrent.org/docs/conf-and-papers/ocaml-ci-zero-conf/</link>
1314
<pubDate>Fri, 28 Aug 2020 00:00:00 +0000</pubDate>
14-
1515
<guid>https://www.ocurrent.org/docs/conf-and-papers/ocaml-ci-zero-conf/</guid>
1616
<description>An overview of the OCaml-CI at the OCaml Workshop 2020</description>
1717
</item>
18-
1918
</channel>
2019
</rss>

docs/conf-and-papers/ocaml-ci-zero-conf/index.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@
88
name="viewport"
99
content="width=device-width,initial-scale=1"
1010
/>
11-
<meta property="og:title" content="OCaml-CI: A Zero-Configuration CI" />
12-
<meta property="og:description" content="An overview of the OCaml-CI at the OCaml Workshop 2020" />
13-
<meta property="og:type" content="article" />
14-
<meta property="og:url" content="https://www.ocurrent.org/docs/conf-and-papers/ocaml-ci-zero-conf/" /><meta property="article:section" content="docs" />
15-
<meta property="article:published_time" content="2020-08-28T00:00:00+00:00" />
16-
<meta property="article:modified_time" content="2020-08-28T00:00:00+00:00" />
11+
<meta property="og:url" content="https://www.ocurrent.org/docs/conf-and-papers/ocaml-ci-zero-conf/">
12+
<meta property="og:site_name" content="OCurrent">
13+
<meta property="og:title" content="OCaml-CI: A Zero-Configuration CI">
14+
<meta property="og:description" content="An overview of the OCaml-CI at the OCaml Workshop 2020">
15+
<meta property="og:locale" content="en_us">
16+
<meta property="og:type" content="article">
17+
<meta property="article:section" content="docs">
18+
<meta property="article:published_time" content="2020-08-28T00:00:00+00:00">
19+
<meta property="article:modified_time" content="2020-08-28T00:00:00+00:00">
1720

1821
<link
1922
rel="stylesheet"

0 commit comments

Comments
 (0)