-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (94 loc) · 2.82 KB
/
pipeline.yaml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
#
# This a demonstration pipeline which uses Nix in a container to drive the toolchain.
#
# - The Nix container (with cached toolchain) are quite big (~ 2Gb) and with no caching makes the
# pull up to 2min at the start.
# - Without caching they result in ~500mb which is better but the toolchain needs to be installed
# during the `nix develop` call.
#
# Remedies: Either to use own runners with proper image caching or do some Github trickery
# (not sure if they work), use the action/cache to cache docker layers and in the next step use
# a step with `uses: docker://...` but then `run:` does not work, how stupid ...
# (need to write an own action in the repo, 💩)
#
name: rdf-protect
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
on:
push:
branches:
- main
- "feat/*"
- "fix/*"
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
container:
image: ghcr.io/sdsc-ordes/rdf-protect:ci-format-1.0.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 1 - format
run: |
cat /etc/os-release
source .gitlab/scripts/before-script.sh
just nix-develop-ci just format
# lint:
# runs-on: ubuntu-latest
# container:
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-lint-1.0.0
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: 2 - lint
# run: |
# source .gitlab/scripts/before-script.sh &&
# just nix-develop-ci just lint
#
# build:
# runs-on: ubuntu-latest
# container:
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-build-1.0.0
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: 3 - build
# run: |
# source .gitlab/scripts/before-script.sh &&
# just nix-develop-ci just build
# # - name: 3.1 - tests
# # run: |
# # source .gitlab/scripts/before-script.sh &&
# # just nix-develop-ci just test
#
# test:
# runs-on: ubuntu-latest
# container:
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-test-1.0.0
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: 4 - test
# run: |
# source .gitlab/scripts/before-script.sh &&
# just nix-develop-ci just test
#
# package:
# runs-on: ubuntu-latest
# container:
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-package-1.0.0
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: 5 - package (nix)
# run: |
# source .gitlab/scripts/before-script.sh &&
# just build-package