-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to CircleCI 2.0. Fixes #76 #86
Open
Ryuno-Ki
wants to merge
26
commits into
Sabayon:master
Choose a base branch
from
Ryuno-Ki:circleci-2-0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
73bcaae
Draft latest-stable-release March 2018
Ryuno-Ki 98c07d0
Broken links (#74)
Ryuno-Ki e82706d
Collecting items for press release.
Ryuno-Ki 9ddd707
Harmonise title.
Ryuno-Ki 2603b2a
Incorporate feedback from Enlik and darksurf.
Ryuno-Ki 2c41679
Add known issues
Ryuno-Ki 6b57dd7
update to 18.04 with some changes
Enlik 19f868a
updates to 18.04
Enlik 3434091
Added links to stable ISOs (including Xfce)
Ryuno-Ki 5c095dd
Restructured second half of the article
Ryuno-Ki 2182afb
Adjusted release date to today.
Ryuno-Ki 4db9a21
improved "plans" section
Enlik 1803e39
Release 18.04
mudler 927176c
Merge branch 'stable-release-notes'
mudler 61fef05
Fix links on release note and update date
mudler fdf4518
Update release announcement with Kernel release schedule and new Saba…
mudler 1c3635f
Prepare for 18.05
mudler 19e522d
fix typo in nick
Enlik b8c47ac
Add Ctrl-C mirror (#60)
ananace 541d60a
Breaking Change: Rewrite markup (#78)
Ryuno-Ki 32e77ff
Incorporate feedback from forums. (#80)
Ryuno-Ki 10df79b
Remove dead FTP mirrors. (#81)
Ryuno-Ki b26b77d
Fix typo. (#82)
Ryuno-Ki c2d9c1c
Add Patreon and Liberapay donate buttons. (#83)
Ryuno-Ki 018dc56
Remove goal badge of Liberapay (#84)
Ryuno-Ki 07a2b9b
Upgrade to CircleCI 2.0
Ryuno-Ki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
environment: | ||
HUGO_VERSION: 0.31.1 | ||
HUGO_THEME: https://github.com/Sabayon/sabayon-website-next-theme | ||
|
||
docker: | ||
# Since there are no official Hugo docker builds, pick one from the | ||
# community. | ||
# See https://discourse.gohugo.io/t/docker-official-repo-for-hugo/144/6 | ||
- image: jojomi/hugo:0.31.1 | ||
|
||
working_directory: ~/Sabayon/sabayon-website-next | ||
parallelism: 1 # For now sequential | ||
|
||
steps: | ||
# Machine setup | ||
- checkout | ||
|
||
# Ensure that directory for deployment exists | ||
- run: | ||
name: Create output file | ||
command: mkdir -p public | ||
|
||
# Dependencies | ||
- run: | ||
name: Install dependencies | ||
command: make dependencies | ||
|
||
# Test and Build | ||
- run: | ||
name: Create build artifact | ||
command: make build | ||
|
||
# Note: Could be that we don't need this step | ||
# See https://github.com/CircleCI-Public/circleci-demo-workflows/blob/sequential-branch-filter/.circleci/config.yml | ||
# Persist for deployment | ||
- persist_to_workspace: | ||
# Must be an absolute path or relative to current working directory | ||
root: public | ||
|
||
# Must be relative to root directory from above | ||
paths: | ||
|
||
deployment: | ||
machine: | ||
enabled: true | ||
|
||
environment: | ||
HUGO_VERSION: 0.31.1 | ||
HUGO_THEME: https://github.com/Sabayon/sabayon-website-next-theme | ||
|
||
docker: | ||
# Since there are no official Hugo docker builds, pick one from the | ||
# community. | ||
# See https://discourse.gohugo.io/t/docker-official-repo-for-hugo/144/6 | ||
- image: jojomi/hugo:0.31.1 | ||
|
||
working_directory: ~/Sabayon/sabayon-website-next | ||
parallelism: 1 # For now sequential | ||
|
||
steps: | ||
# Read files from build job | ||
- attach_workspace: | ||
# Must be an absolute path or relative to current working directory | ||
# Must match root path from build job | ||
at: public | ||
|
||
# Deployment | ||
- run: | ||
name: Push build artifact | ||
command: make publish | ||
|
||
workflows: | ||
version: 2 | ||
build_and_deploy: | ||
jobs: | ||
- build | ||
- deploy: | ||
requires: | ||
- build | ||
filters: | ||
branches: | ||
only: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ $RECYCLE.BIN/ | |
# vim | ||
*.swp | ||
*.*~ | ||
.*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ languageCode = "en-us" | |
title = "Sabayon Linux" | ||
canonifyurls = true | ||
|
||
sectionPagesMenu = "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
--- | ||
|
||
#### Our Community | ||
|
||
You don't have to be able to code to help the | ||
[Sabayon Community](https://forum.sabayon.org/). | ||
There are many ways to contribute, be it your passion, your skills, | ||
your time or a monetary donation. | ||
|
||
Sabayon is user powered, created solely on freely given user contributions, | ||
so why not help out and give back to the community? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
--- | ||
|
||
#### Join us on Facebook, Google+ | ||
|
||
Meet our crazy community on | ||
{{< social-media channel="Facebook" >}} | ||
Alternatively, have fun with the guys and gals on | ||
{{< social-media channel="Google+ community" >}} | ||
or simply +1 us our | ||
{{< social-media channel="Google+ page" >}}. | ||
|
||
[There are many different Sabayon variants](/download/). | ||
|
||
Each one is designed for a specific purpose and designed to bring out the best in your hardware | ||
|
||
We provide Live versions of most of our variants, so you can try out Sabayon without touching your Computer's Hard drive. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
icon: fa-calendar | ||
--- | ||
|
||
### Extreme release cycle | ||
|
||
Daily and Monthly images available |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
icon: fa-bolt | ||
--- | ||
|
||
### Fast | ||
|
||
Fast and optimized for your hardware! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
icon: fa-cog | ||
--- | ||
|
||
### Multiple Repositories | ||
|
||
From testing to Community Repositories |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
icon: fa-rocket | ||
--- | ||
|
||
### Out-of-the-box! | ||
|
||
Just start it, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
icon: fa-refresh | ||
--- | ||
|
||
### Rolling Release | ||
|
||
Install just once, you can upgrade everytime | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
--- | ||
|
||
![Logo of NLNet Foundation](/img/sponsor/nlnet.png) | ||
|
||
**NLNet Foundation** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
--- | ||
|
||
![Logo of Top-ix.org](/img/sponsor/topix.png) | ||
|
||
**Top-ix.org Development Program** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
--- | ||
|
||
[![Logo of Trustica.cz](/img/sponsor/trustica.svg)](http://www.trustica.cz/en/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
--- | ||
|
||
![Logo of University of Brescia](/img/sponsor/unibs.png) | ||
|
||
**University of Brescia** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
--- | ||
|
||
![Logo of University of Milano-Bicocca](/img/sponsor/bicocca.png) | ||
|
||
**University of Milano-Bicocca** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
--- | ||
|
||
![Logo of University of Trento](/img/sponsor/unitn.png) | ||
|
||
**University of Trento** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
+++ | ||
+++ | ||
|
||
## Community Collaboration | ||
|
||
### Sabayon is developed with heart from people all around the world that work together | ||
|
||
Be part of our family, be part of our [community](https://forum.sabayon.org). | ||
|
||
If you want to contribute | ||
[out code is hosted on GitHub](https://github.com/Sabayon/). | ||
If you want to support us, | ||
but you don't have time or any coding/computer skills, you can | ||
[donate](/press/donate/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
+++ | ||
+++ | ||
|
||
## Read the documentation | ||
|
||
### Check the [Release Notes](/latest) for the version you are downloading | ||
|
||
For more information about | ||
[Sabayon](https://wiki.sabayon.org/index.php?title=En:Sabayon_Linux), | ||
such as usage and system requirements, | ||
[read the documentation](https://wiki.sabayon.org/index.php?title=En:FAQ#System_Requirements). | ||
|
||
If you feel lost after install, take a minute to read the | ||
["Fresh install, what now?"](https://wiki.sabayon.org/index.php?title=En:Entropy#Fresh_Install_-_What_to_do.3F) | ||
guide to familiarize with our package manager. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
+++ | ||
|
||
## Why you should go for us |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
+++ | ||
|
||
## Our flavours |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
classes = "artwork hero-image" | ||
+++ | ||
|
||
# Sabayon Linux | ||
|
||
[Download Sabayon](/download/flavours/desktop/) | ||
[Latest press release](/latest/) | ||
|
||
![Sabayon wallpaper](img/laptop.png) | ||
|
||
Sabayon is a beginner-friendly Gentoo-based open-source Linux distribution. | ||
Get recent open source technologies, that just works<sup>TM</sup>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
+++ | ||
+++ | ||
|
||
## You are free to use, modify and redistribute it! Spread the word! | ||
|
||
### Our sponsors |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we are not using hugo from the image, i guess it's fine to use ours in this case