forked from micro5k/microg-unofficial-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (79 loc) · 2.77 KB
/
base.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
# SPDX-FileCopyrightText: (c) 2021 ale5000
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileType: SOURCE
name: "Base"
permissions: {}
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
workflow_dispatch:
jobs:
base-job:
name: "Coverage and testing"
runs-on: ubuntu-latest
steps:
- name: "Check out code"
uses: actions/checkout@v4
- name: "Set up Java"
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- name: "Set up Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
- name: "Install Bashcov and Codecov"
run: |
# Installing Bashcov and Codecov...
gem install bashcov:3.0.2 codecov
- name: "Execute code coverage"
id: "coverage"
run: |
### Executing code coverage...
workspace_path='${{ github.workspace }}'; readonly workspace_path
export OPENSOURCE_ONLY='true'
#sudo apt-get -qq -y install moreutils 1>/dev/null
bashcov "${workspace_path:?}/build.sh" # To timestamp the output pipe it to: TZ=UTC ts '[%H:%M:%S]'
printf '\n'
### Testing zip installation...
bash "${workspace_path:?}/recovery-simulator/recovery.sh" "${workspace_path:?}"/output/*.zip
printf '\n'
echo '==============='
echo 'RECOVERY OUTPUT'
echo '==============='
if test -e "${workspace_path:?}/recovery-simulator/output/recovery-output.log"; then
cat "${workspace_path:?}/recovery-simulator/output/recovery-output.log"
fi
printf '\n'
echo '==============='
echo 'INSTALLED FILES'
echo '==============='
if test -e "${workspace_path:?}/recovery-simulator/output/installed-files.log"; then
cat "${workspace_path:?}/recovery-simulator/output/installed-files.log"
fi
- name: "SHA256"
if: "${{ github.event_name != 'pull_request' }}"
run: |
# SHA256...
sha256_hash='${{ steps.coverage.outputs.sha256_hash }}'; readonly sha256_hash
echo "::notice::${sha256_hash:-Missing hash}"
- name: "Upload artifacts"
if: "${{ github.ref == 'refs/heads/main' }}"
uses: actions/upload-artifact@v4
with:
name: "microG unofficial installer OSS build (extract it)"
path: "output/*.zip*"
retention-days: 7
- name: "Upload coverage reports to Codecov"
if: "${{ github.repository_owner == 'micro5k' }}"
uses: codecov/codecov-action@v3
with:
#fail_ci_if_error: true
files: "${{ github.workspace }}/coverage/codecov-result.json"
token: "${{ secrets.CODECOV_TOKEN }}"