Skip to content

Commit 8b14a0d

Browse files
authored
Merge pull request #111 from CerebruxCode/RC-5.0
Release v5.0
2 parents 97cdbd4 + ff05789 commit 8b14a0d

File tree

5 files changed

+292
-203
lines changed

5 files changed

+292
-203
lines changed

.github/workflows/main.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
# Controls when the action will run. Triggers the workflow on push or pull request
4+
# events but only for the master branch
5+
on:
6+
push:
7+
pull_request:
8+
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
- name: Run Shellcheck
17+
uses: azohra/shell-linter@latest
18+
with:
19+
args: --external-sources

.github/workflows/reviewdog.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Workflow https://github.com/marketplace/actions/run-shellcheck-with-reviewdog
2+
3+
name: Review Dog
4+
5+
on:
6+
push:
7+
pull_request:
8+
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
# This workflow contains a single job called "build"
12+
shellcheck:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v2
17+
- name: shellcheck github-check
18+
uses: reviewdog/action-shellcheck@v1
19+
with:
20+
github_token: ${{ secrets.github_token }}
21+
reporter: github-check # Change reporter.
22+
pattern: "*.sh" # Optional.
23+
exclude: "./.git/*" # Optional.
24+
shellcheck_flags: --external-sources
25+
#level: info
26+
#shellcheck_flags: --severity=style
27+
shellcheck_pr:
28+
#if: github.event_name == 'pull_request'
29+
name: shellcheck pull request
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout code
33+
uses: actions/checkout@v2
34+
- name: shellcheck github-pr-review
35+
uses: reviewdog/action-shellcheck@v1
36+
with:
37+
github_token: ${{ secrets.github_token }}
38+
reporter: github-pr-review
39+
pattern: "*.sh" # Optional.
40+
exclude: "./.git/*" # Optional.
41+
shellcheck_flags: --external-sources

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Main Authors
2020
Vasilis Niakas : https://github.com/billniakas
2121
Salih Emin : https://github.com/cerebrux
2222

23+
QA
24+
~~~~~~~~~~~~
25+
JohnGavr : https://github.com/JohnGavr
26+
2327

2428
Contributors
2529
~~~~~~~~~~~~
@@ -28,3 +32,4 @@ Ant. George : https://github.com/AntGeorge
2832
George Ioakeimidis : https://github.com/giorgosioak
2933
217alex : https://github.com/217alex
3034
Dimitris Katsimardos : https://github.com/dimkatsi91
35+
JohnGavr : https://github.com/JohnGavr

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Archon (Άρχων)
2-
2+
![Lint and Shellcheck CI](https://github.com/CerebruxCode/Archon/workflows/CI/badge.svg?branch=develop)
33
```
44
_____
55
__|_ |__ _____ ______ __ _ _____ ____ _
@@ -32,8 +32,7 @@
3232

3333
* Ο Άρχων εγκαθιστά το βασικό σύστημα Arch Linux χωρίς την προσθήκη γραφικού περιβάλλοντος
3434
* Αναγνωρίζει αν το PC όπου γίνεται η εγκατάσταση έχει BIOS ή UEFI και κάνει τις ανάλογες κατατμήσεις (partitions)
35-
* Δημιουργεί ένα μόνο 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/)
36-
* Εγκαθιστά τις multilib βιβλιοθήκες για υποστήριξη 32bit εφαρμογών
35+
* Σε ρωτάει για το σύστημα αρχείων και αν θέλεις swapfile για χρήση ως SWAP
3736
* Λίγο πριν τελειώσει, ρωτάει τον χρήστη αν θέλει να επιλέξει και ένα γραφικό περιβάλλον που θέλει να εγκατασταθεί στο σύστημά του. Αν το αποδεχτεί θα κάνει τις απαραίτητες ενέργειες για να έχει την Vanilla - Upstream έκδοση του γραφικού περιβάλλοντος που επέλεξε.
3837

3938
## Σε ποιους απευθύνεται;

0 commit comments

Comments
 (0)