Skip to content

Commit 93df238

Browse files
committed
fix cicd, step 33
1 parent 49b4500 commit 93df238

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/client_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
fail-fast: true
4242
matrix:
4343
settings:
44-
- host: ubuntu-latest
45-
target: x86_64-unknown-linux-gnu
46-
build: make release-linux
44+
# - host: ubuntu-latest
45+
# target: x86_64-unknown-linux-gnu
46+
# build: make release-linux
4747
- host: macos-latest
4848
target: x86_64-apple-darwin
4949
build: make release-mac-x86_64
@@ -73,8 +73,8 @@ jobs:
7373
target/
7474
key: ${{ matrix.settings.host }}-${{ matrix.settings.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
7575
restore-keys: ${{ matrix.settings.host }}-cargo-${{ matrix.settings.target }}
76-
# - name: Setup tmate session
77-
# uses: mxschmitt/action-tmate@v3
76+
- name: Setup tmate session
77+
uses: mxschmitt/action-tmate@v3
7878
- name: Build
7979
run: ${{ matrix.settings.build }}
8080

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#export PROTOC := $(shell pwd)/protoc/bin
77

88
release-mac-x86_64:
9-
mkdir protoc && cd protoc && wget https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-osx-x86_64.zip && unzip protoc-21.9-osx.x86_64.zip && sudo cp bin/protoc /usr/bin
9+
mkdir protoc && cd protoc && wget https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-osx-x86_64.zip && unzip protoc-21.9-osx-x86_64.zip && sudo cp bin/protoc /usr/bin
1010
brew install cmake
1111
mkdir -p release
1212
cd client && cargo build --release --target=x86_64-apple-darwin
@@ -18,7 +18,7 @@ release-mac-x86_64:
1818
ls -lisah release/fornet-mac-x86_64.tar.gz
1919

2020
release-mac-aarch64:
21-
mkdir protoc && cd protoc && wget https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-osx-aarch_64.zip && unzip protoc-21.9-osx.aarch_64.zip && sudo cp bin/protoc /usr/bin
21+
mkdir protoc && cd protoc && wget https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-osx-aarch_64.zip && unzip protoc-21.9-osx-aarch_64.zip && sudo cp bin/protoc /usr/bin
2222
cp -r protoc/include/* protobuf/
2323
brew install cmake
2424
mkdir -p release

0 commit comments

Comments
 (0)