Skip to content

Commit 8cdfb33

Browse files
added common OP files
1 parent beae978 commit 8cdfb33

File tree

7 files changed

+57
-31
lines changed

7 files changed

+57
-31
lines changed

.github/dependent-repositories.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"include" : [
3+
{ "repository" : "OpenPonk/plugins", "branch" : "master", "build-dependent" : true }
4+
]
5+
}

.github/workflows/nightly.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Nightly
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
build-dependent:
7+
description: 'Should build dependent repositories? (true/false)'
8+
required: false
9+
default: false
10+
push:
11+
branches:
12+
- 'main'
13+
14+
jobs:
15+
plugins:
16+
uses: OpenPonk/ci-scripts/.github/workflows/publish-nightly.yml@master
17+
secrets: inherit

.github/workflows/release.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_call:
7+
8+
jobs:
9+
plugins:
10+
uses: OpenPonk/ci-scripts/.github/workflows/publish-release.yml@master
11+
secrets: inherit

.gitignore

-31
This file was deleted.

.project

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
'srcDirectory' : 'Pharo',
3+
'tags' : [ #OpenPonk ]
4+
}

.smalltalk.ston

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
SmalltalkCISpec {
2+
#loading : [
3+
SCIMetacelloLoadSpec {
4+
#baseline : 'ERD',
5+
#directory : 'Pharo',
6+
#platforms : [ #pharo ]
7+
}
8+
],
9+
#preLoading : 'ci-scripts/.github/scripts/preLoad.st',
10+
#postLoading : 'ci-scripts/.github/scripts/postLoad.st',
11+
#testing : {
12+
#packages : [ 'OpenPonk*' ],
13+
#coverage : {
14+
#packages : [ 'OpenPonk-ERD*' ]
15+
}
16+
}
17+
}

Pharo/.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
#format : #tonel
3+
}

0 commit comments

Comments
 (0)