Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
maciektr committed Oct 30, 2023
1 parent b690673 commit 51dbf63
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,20 @@ jobs:
- name: Push patches to the repository
run: git push origin ${{ env.NIGHTLY_BRANCH }}

check:
uses: ./.github/workflows/_check-release.yml
needs: prepare
with:
ref: ${{ needs.prepare.outputs.nightly_branch }}
fail-fast: false
# check:
# uses: ./.github/workflows/_check-release.yml
# needs: prepare
# with:
# ref: ${{ needs.prepare.outputs.nightly_branch }}
# fail-fast: false

release:
uses: ./.github/workflows/_build-release.yml
needs: prepare
with:
scarb-tag: v${{ needs.prepare.outputs.nightly_version }}
ref: ${{ needs.prepare.outputs.nightly_branch }}
fail-fast: false

# upload:
# runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
[target.x86_64-unknown-linux-gnu]
pre-build = [
"echo $CROSS_DEB_ARCH",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]

[target.x86_64-unknown-linux-musl]
pre-build = [
"echo $CROSS_DEB_ARCH",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]

[target.aarch64-unknown-linux-gnu]
pre-build = [
"echo $CROSS_DEB_ARCH",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]

[target.aarch64-unknown-linux-musl]
pre-build = [
"echo $CROSS_DEB_ARCH",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]

0 comments on commit 51dbf63

Please sign in to comment.