-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add multiple ways of starting the server based on memory requirements * bump version before compile * use lazy_static only if necessary
- Loading branch information
Showing
6 changed files
with
83 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,11 @@ jobs: | |
- name: Install bump tool | ||
run: cargo install cargo-workspaces cargo-zigbuild | ||
|
||
- name: Bump versions | ||
run: | | ||
SEM_VER=$(.github/semver.sh) | ||
cargo workspaces version $SEM_VER -a -y --force '*' --no-git-commit | ||
- name: Compile for x86_64-unknown-linux-gnu | ||
run: | | ||
rustup target add x86_64-unknown-linux-gnu | ||
|
@@ -107,9 +112,6 @@ jobs: | |
- name: Tag | ||
id: tag | ||
run: | | ||
SEM_VER=$(.github/semver.sh) | ||
cargo workspaces version $SEM_VER -a -y --force '*' --no-git-commit | ||
version=`grep '^version = ' Cargo.toml | sed 's/version = //; s/\"//; s/\"//'` | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters