@@ -65,82 +65,82 @@ jobs:
6565 file : uniffi/output-frameworks/anoncreds-swift/libanoncreds.xcframework.zip
6666 asset_name : " libanoncreds.xcframework.zip"
6767
68- build-kmp :
69- name : " Build KMP"
70- runs-on : macos-latest
71- steps :
72- - name : Checkout the repo
73- uses : actions/checkout@v3
74- with :
75- submodules : recursive
76- token : ${{ secrets.ATALA_GITHUB_TOKEN }}
77- fetch-depth : 0
78-
79- - name : " Install Java ${{ env.JAVA_VERSION }}"
80- uses : actions/setup-java@v3
81- with :
82- java-version : " ${{ env.JAVA_VERSION }}"
83- distribution : zulu
84-
85- - name : Install Homebrew
86- run : >
87- /bin/bash -c "$(curl -fsSL
88- https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
89-
90- - name : " Install autoconf, automake, libtool"
91- run : |
92- brew install autoconf automake libtool
93-
94- - name : " Install Mac ToolChain"
95- run : |
96- brew tap messense/macos-cross-toolchains
97-
98- - name : " Install Linux GNU for x86_64"
99- run : |
100- rm '/usr/local/bin/2to3'
101- rm '/usr/local/bin/2to3-3.11'
102- rm '/usr/local/bin/2to3-3.12'
103- rm '/usr/local/bin/python3'
104- rm '/usr/local/bin/python3.11'
105- rm '/usr/local/bin/python3.12'
106- rm '/usr/local/bin/idle3'
107- rm '/usr/local/bin/idle3.11'
108- rm '/usr/local/bin/idle3.12'
109- rm '/usr/local/bin/pydoc3'
110- rm '/usr/local/bin/pydoc3.11'
111- rm '/usr/local/bin/pydoc3.12'
112- rm '/usr/local/bin/python3-config'
113- rm '/usr/local/bin/python3.11-config'
114- rm '/usr/local/bin/python3.12-config'
115- rm -r '/usr/local/lib/node_modules'
116- brew install --overwrite x86_64-unknown-linux-gnu
117-
118- - name : " Install Linux GNU for aarch64"
119- run : |
120- brew install --overwrite aarch64-unknown-linux-gnu
121-
122- - name : " Install Rust Targets"
123- run : |
124- rustup target add armv7-linux-androideabi
125- rustup target add i686-linux-android
126- rustup target add aarch64-linux-android
127- rustup target add x86_64-linux-android
128- rustup target add aarch64-apple-darwin
129- rustup target add x86_64-apple-darwin
130- rustup target add aarch64-unknown-linux-gnu
131- rustup target add x86_64-unknown-linux-gnu
132-
133- - name : " Install Rust Cargo NDK"
134- run : |
135- cargo install cargo-ndk
136-
137- - name : " Publish to GitHub Maven"
138- working-directory : ./anoncred-kmm
139- run : |
140- ./gradlew :anoncreds-kmp:publishAllPublicationsToGitHubPackagesRepository
68+ # build-kmp:
69+ # name: "Build KMP"
70+ # runs-on: macos-latest
71+ # steps:
72+ # - name: Checkout the repo
73+ # uses: actions/checkout@v3
74+ # with:
75+ # submodules: recursive
76+ # token: ${{ secrets.ATALA_GITHUB_TOKEN }}
77+ # fetch-depth: 0
78+ #
79+ # - name: "Install Java ${{ env.JAVA_VERSION }}"
80+ # uses: actions/setup-java@v3
81+ # with:
82+ # java-version: "${{ env.JAVA_VERSION }}"
83+ # distribution: zulu
84+ #
85+ # - name: Install Homebrew
86+ # run: >
87+ # /bin/bash -c "$(curl -fsSL
88+ # https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
89+ #
90+ # - name: "Install autoconf, automake, libtool"
91+ # run: |
92+ # brew install autoconf automake libtool
93+ #
94+ # - name: "Install Mac ToolChain"
95+ # run: |
96+ # brew tap messense/macos-cross-toolchains
97+ #
98+ # - name: "Install Linux GNU for x86_64"
99+ # run: |
100+ # rm '/usr/local/bin/2to3'
101+ # rm '/usr/local/bin/2to3-3.11'
102+ # rm '/usr/local/bin/2to3-3.12'
103+ # rm '/usr/local/bin/python3'
104+ # rm '/usr/local/bin/python3.11'
105+ # rm '/usr/local/bin/python3.12'
106+ # rm '/usr/local/bin/idle3'
107+ # rm '/usr/local/bin/idle3.11'
108+ # rm '/usr/local/bin/idle3.12'
109+ # rm '/usr/local/bin/pydoc3'
110+ # rm '/usr/local/bin/pydoc3.11'
111+ # rm '/usr/local/bin/pydoc3.12'
112+ # rm '/usr/local/bin/python3-config'
113+ # rm '/usr/local/bin/python3.11-config'
114+ # rm '/usr/local/bin/python3.12-config'
115+ # rm -r '/usr/local/lib/node_modules'
116+ # brew install --overwrite x86_64-unknown-linux-gnu
117+ #
118+ # - name: "Install Linux GNU for aarch64"
119+ # run: |
120+ # brew install --overwrite aarch64-unknown-linux-gnu
121+ #
122+ # - name: "Install Rust Targets"
123+ # run: |
124+ # rustup target add armv7-linux-androideabi
125+ # rustup target add i686-linux-android
126+ # rustup target add aarch64-linux-android
127+ # rustup target add x86_64-linux-android
128+ # rustup target add aarch64-apple-darwin
129+ # rustup target add x86_64-apple-darwin
130+ # rustup target add aarch64-unknown-linux-gnu
131+ # rustup target add x86_64-unknown-linux-gnu
132+ #
133+ # - name: "Install Rust Cargo NDK"
134+ # run: |
135+ # cargo install cargo-ndk
136+ #
137+ # - name: "Publish to GitHub Maven"
138+ # working-directory: ./anoncred-kmm
139+ # run: |
140+ # ./gradlew :anoncreds-kmp:publishAllPublicationsToGitHubPackagesRepository
141141
142142 build-release :
143- needs : [build-swift-package, build-kmp ]
143+ needs : [build-swift-package]
144144 name : Build Library
145145
146146 strategy :
0 commit comments