Skip to content

Commit

Permalink
Merge pull request #111 from CerebruxCode/RC-5.0
Browse files Browse the repository at this point in the history
Release v5.0
  • Loading branch information
cerebrux authored Jun 8, 2020
2 parents 97cdbd4 + ff05789 commit 8b14a0d
Show file tree
Hide file tree
Showing 5 changed files with 292 additions and 203 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
pull_request:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Shellcheck
uses: azohra/shell-linter@latest
with:
args: --external-sources
41 changes: 41 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Workflow https://github.com/marketplace/actions/run-shellcheck-with-reviewdog

name: Review Dog

on:
push:
pull_request:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: shellcheck github-check
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check # Change reporter.
pattern: "*.sh" # Optional.
exclude: "./.git/*" # Optional.
shellcheck_flags: --external-sources
#level: info
#shellcheck_flags: --severity=style
shellcheck_pr:
#if: github.event_name == 'pull_request'
name: shellcheck pull request
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: shellcheck github-pr-review
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
pattern: "*.sh" # Optional.
exclude: "./.git/*" # Optional.
shellcheck_flags: --external-sources
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Main Authors
Vasilis Niakas : https://github.com/billniakas
Salih Emin : https://github.com/cerebrux

QA
~~~~~~~~~~~~
JohnGavr : https://github.com/JohnGavr


Contributors
~~~~~~~~~~~~
Expand All @@ -28,3 +32,4 @@ Ant. George : https://github.com/AntGeorge
George Ioakeimidis : https://github.com/giorgosioak
217alex : https://github.com/217alex
Dimitris Katsimardos : https://github.com/dimkatsi91
JohnGavr : https://github.com/JohnGavr
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Archon (Άρχων)

![Lint and Shellcheck CI](https://github.com/CerebruxCode/Archon/workflows/CI/badge.svg?branch=develop)
```
_____
__|_ |__ _____ ______ __ _ _____ ____ _
Expand Down Expand Up @@ -32,8 +32,7 @@

* Ο Άρχων εγκαθιστά το βασικό σύστημα Arch Linux χωρίς την προσθήκη γραφικού περιβάλλοντος
* Αναγνωρίζει αν το PC όπου γίνεται η εγκατάσταση έχει BIOS ή UEFI και κάνει τις ανάλογες κατατμήσεις (partitions)
* Δημιουργεί ένα μόνο partition (root+home) και για swap χρησιμοποιεί το [systemD-swap](http://cerebrux.net/2017/06/20/systemd-swap-%ce%b3%ce%b9%ce%b1-%cf%8c%cf%83%ce%bf%cf%85%cf%82-%ce%b4%ce%b5%ce%bd-%ce%b8%ce%ad%ce%bb%ce%bf%cf%85%ce%bd-swap-partition/)
* Εγκαθιστά τις multilib βιβλιοθήκες για υποστήριξη 32bit εφαρμογών
* Σε ρωτάει για το σύστημα αρχείων και αν θέλεις swapfile για χρήση ως SWAP
* Λίγο πριν τελειώσει, ρωτάει τον χρήστη αν θέλει να επιλέξει και ένα γραφικό περιβάλλον που θέλει να εγκατασταθεί στο σύστημά του. Αν το αποδεχτεί θα κάνει τις απαραίτητες ενέργειες για να έχει την Vanilla - Upstream έκδοση του γραφικού περιβάλλοντος που επέλεξε.

## Σε ποιους απευθύνεται;
Expand Down
Loading

0 comments on commit 8b14a0d

Please sign in to comment.