Skip to content

Commit

Permalink
trying m1 on circleci again
Browse files Browse the repository at this point in the history
  • Loading branch information
dashaun committed May 23, 2023
1 parent 6e15bca commit 098dee3
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,23 @@ jobs:
- run:
name: "upload release asset"
command: gh release upload "${CIRCLE_TAG}" ./target/initializr-plusplus-linux-aarch_64

macos-arm64-native:
macos:
xcode: 14.3.0
resource_class: macos.m1.large.gen1
steps:
- checkout
- sdkman/setup-sdkman
- sdkman/sdkman-install:
candidate: java
version: 22.3.1.r17-grl
- run:
name: "native compile"
command: "./mvnw -Pnative clean native:compile -DskipTests"
- gh/setup
- run:
name: "upload release asset"
command: gh release upload "${CIRCLE_TAG}" ./target/initializr-plusplus-osx-aarch_64
workflows:
create-gh-release:
jobs:
Expand All @@ -53,4 +69,14 @@ workflows:
tags:
only: /^v.*/
branches:
ignore: /.*/
ignore: /.*/
macos-arm64-workflow:
jobs:
- macos-arm64-native:
context:
- dashaun-github
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/

0 comments on commit 098dee3

Please sign in to comment.