Skip to content

Commit

Permalink
(chore) pin wren-essentials version (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel authored Nov 17, 2021
1 parent 0a35965 commit ab7a93d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ jobs:
steps:
- name: Checkout wren-console
uses: actions/checkout@v2
- name: Pin dependencies
shell: bash
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
- name: Checkout wren-essentials
uses: actions/checkout@v2
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
ref: ${{env.WREN_ESSENTIALS}}
- name: build
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
Expand All @@ -44,11 +49,15 @@ jobs:
steps:
- name: Checkout wren-console
uses: actions/checkout@v2
- name: Pin dependencies
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
- name: Checkout wren-essentials
uses: actions/checkout@v2
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
ref: ${{env.WREN_ESSENTIALS}}
- name: build & test
run: |
make -j8 -C projects/make.mac/
Expand All @@ -66,11 +75,15 @@ jobs:
steps:
- name: Checkout wren-console
uses: actions/checkout@v2
- name: Pin dependencies
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
- name: Checkout wren-essentials
uses: actions/checkout@v2
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
ref: ${{env.WREN_ESSENTIALS}}
- name: build & test
run: |
make -j8 -C projects/make/
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: actions/checkout@v2
- name: Set env & pre-setup
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
mkdir wren_modules
echo "PRERELEASE=false" >> $GITHUB_ENV
Expand All @@ -32,6 +33,7 @@ jobs:
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
ref: ${{env.WREN_ESSENTIALS}}
- name: "Build & test"
run: |
make -j8 -C projects/make/
Expand Down Expand Up @@ -71,14 +73,17 @@ jobs:
steps:
- name: Checkout wren-console
uses: actions/checkout@v2
- name: Set env
shell: bash
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: wren-essentials
uses: actions/checkout@v2
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
- name: Set env
shell: bash
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
ref: ${{env.WREN_ESSENTIALS}}
- name: "Build & test"
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
Expand Down Expand Up @@ -115,13 +120,15 @@ jobs:
uses: actions/checkout@v2
- name: Copy environment from our release runner
run: |
cat WREN_ESSENTIALS >> $GITHUB_ENV
echo "RELEASE_VERSION=${{ needs.tagged-release.outputs.release_version }}" >> $GITHUB_ENV
echo "PRERELEASE=${{ needs.tagged-release.outputs.prerelease }}" >> $GITHUB_ENV
- name: Checkout wren-essentials
uses: actions/checkout@v2
with:
repository: joshgoebel/wren-essentials
path: deps/wren-essentials
ref: ${{env.WREN_ESSENTIALS}}
- name: "Build & test"
run: |
make -j8 -C projects/make.mac/
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.1

- Fixes broken wren-essentials Wren -> C compile glitch.
- Upgrades `wren-essentials` to `v0.2.1`

Sorry about that, everyone.

## 0.3.0

Expand Down
1 change: 1 addition & 0 deletions WREN_ESSENTIALS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WREN_ESSENTIALS=v0.2.1

0 comments on commit ab7a93d

Please sign in to comment.