mirror of
https://github.com/diamante0018/MonitorRam.git
synced 2026-02-07 22:23:03 +00:00
Compare commits
2 Commits
1f63f81979
...
f104e824f2
| Author | SHA1 | Date | |
|---|---|---|---|
| f104e824f2 | |||
|
6cb1a36547
|
@@ -32,11 +32,11 @@ RUN python3 -m venv /opt/venv && \
|
|||||||
ENV PATH="/opt/venv/bin:$PATH"
|
ENV PATH="/opt/venv/bin:$PATH"
|
||||||
|
|
||||||
# Download and install Premake5
|
# Download and install Premake5
|
||||||
RUN wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta5/premake-5.0.0-beta5-linux.tar.gz \
|
RUN wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta8/premake-5.0.0-beta8-linux.tar.gz \
|
||||||
&& tar -xvf premake-5.0.0-beta5-linux.tar.gz \
|
&& tar -xvf premake-5.0.0-beta8-linux.tar.gz \
|
||||||
&& mv premake5 /usr/local/bin/ \
|
&& mv premake5 /usr/local/bin/ \
|
||||||
&& chmod +x /usr/local/bin/premake5 \
|
&& chmod +x /usr/local/bin/premake5 \
|
||||||
&& rm premake-5.0.0-beta5-linux.tar.gz
|
&& rm premake-5.0.0-beta8-linux.tar.gz
|
||||||
|
|
||||||
ARG USERNAME=vscode
|
ARG USERNAME=vscode
|
||||||
ARG USER_UID=1000
|
ARG USER_UID=1000
|
||||||
|
|||||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -14,7 +14,7 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PREMAKE_VERSION: "5.0.0-beta5"
|
PREMAKE_VERSION: "5.0.0-beta8"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
@@ -44,10 +44,10 @@ jobs:
|
|||||||
if: matrix.arch == 'arm64'
|
if: matrix.arch == 'arm64'
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install crossbuild-essential-arm64 -y
|
sudo apt-get install -y crossbuild-essential-arm64
|
||||||
|
|
||||||
- name: Install Premake5
|
- name: Install Premake5
|
||||||
uses: diamante0018/setup-premake@v0.0.2
|
uses: diamante0018/setup-premake@master
|
||||||
with:
|
with:
|
||||||
version: ${{ env.PREMAKE_VERSION }}
|
version: ${{ env.PREMAKE_VERSION }}
|
||||||
|
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -26,6 +26,7 @@ bld/
|
|||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
[Ll]og/
|
[Ll]og/
|
||||||
|
build/
|
||||||
|
|
||||||
# Visual Studio 2015/2017 cache/options directory
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
.vs/
|
.vs/
|
||||||
|
|||||||
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@@ -7,7 +7,7 @@
|
|||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/build/bin/x64/Debug/MonitorRam",
|
"program": "${workspaceFolder}/build/bin/x64/Debug/MonitorRam",
|
||||||
"args": [
|
"args": [
|
||||||
""
|
"MonitorRam"
|
||||||
], // Arguments to pass to your program
|
], // Arguments to pass to your program
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
BSD 3-Clause License
|
BSD 3-Clause License
|
||||||
|
|
||||||
Copyright (c) 2025, diamante0018
|
Copyright (c) 2026, diamante0018
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
|||||||
Reference in New Issue
Block a user