Skip to content

Commit

Permalink
Update GitHub CI config, README, and version files for #145
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Nov 15, 2023
1 parent cfae35e commit b499bee
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 5 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,21 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Checkout metafacture-core
uses: actions/checkout@v2
with:
path: metafacture-core
repository: metafacture/metafacture-core
ref: 5.7.0-rc1
- name: Install metafacture-core
working-directory: metafacture-core
run: ./gradlew install
- name: Checkout metafacture-fix
uses: actions/checkout@v2
with:
path: metafacture-fix
repository: metafacture/metafacture-fix
ref: 0.6.1
ref: 0.6.0-rc3
- name: Install metafacture-fix
working-directory: metafacture-fix
run: ./gradlew install
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,21 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Checkout metafacture-core
uses: actions/checkout@v2
with:
path: metafacture-core
repository: metafacture/metafacture-core
ref: 5.7.0-rc1
- name: Install metafacture-core
working-directory: metafacture-core
run: ./gradlew install
- name: Checkout metafacture-fix
uses: actions/checkout@v2
with:
path: metafacture-fix
repository: metafacture/metafacture-fix
ref: 0.6.1
ref: 0.6.0-rc3
- name: Install metafacture-fix
working-directory: metafacture-fix
run: ./gradlew install
Expand Down
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,35 @@ wget -O ~/bin/lein https://raw.githubusercontent.com/technomancy/leiningen/stabl
chmod a+x ~/bin/lein
```

### Install Metafacture Core

This project depends on [metafacture-core](https://github.com/metafacture/metafacture-core), which is work in progress.
It is possible to display the current version of dependencies in the UI. To display the version, please read this [section](#show-dependency-versions-in-ui). This is especially reasonable when installing on a server.

Clone and install metafacture-core:
```bash
$ git clone https://github.com/metafacture/metafacture-core.git -b 5.7.0-rc1
$ cd metafacture-core
```

Unix:
```bash
$ ./gradlew install
```

Windows:
```bash
$ .\gradlew.bat install
```

### Install Metafacture Fix

This project depends on [metafacture-fix](https://github.com/metafacture/metafacture-fix), which is work in progress.
It is possible to display the current version of dependencies in the UI. To display the version, please read this [section](#show-dependency-versions-in-ui). This is especially reasonable when installing on a server.

Clone and install metafacture-fix:
```bash
$ git clone https://github.com/metafacture/metafacture-fix.git -b 0.6.1
$ git clone https://github.com/metafacture/metafacture-fix.git -b 0.6.0-rc3
$ cd metafacture-fix
```

Expand Down
2 changes: 1 addition & 1 deletion resources/versions/metafacture-framework
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/metafacture/metafacture-core/releases/tag/metafacture-core-5.6.0
https://github.com/metafacture/metafacture-core/tree/5.7.0-rc1
2 changes: 1 addition & 1 deletion resources/versions/metafix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/metafacture/metafacture-fix/releases/tag/0.6.1
https://github.com/metafacture/metafacture-fix/tree/0.6.0-rc3

0 comments on commit b499bee

Please sign in to comment.