mirror of
https://dev.lirent.ru/Vatrog/vm-automation-signaling.git
synced 2026-06-25 20:36:36 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
64b1a39b55
|
|||
|
b14ea0e381
|
@@ -86,11 +86,20 @@ jobs:
|
||||
env:
|
||||
SERVER: ${{ github.server_url }}
|
||||
OWNER: ${{ github.repository_owner }}
|
||||
ACTOR: ${{ github.actor }}
|
||||
TOKEN: ${{ secrets.PUBLISH_TOKEN }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
apt-get update
|
||||
apt-get install -y --no-install-recommends \
|
||||
cmake make gcc libc6-dev dpkg-dev file ca-certificates curl
|
||||
# The Gitea Debian registry is private: apt needs HTTP Basic Auth. [trusted=yes]
|
||||
# only skips GPG verification, NOT authentication — hence the prior 401. The token
|
||||
# is written to auth.conf.d (never echoed to the log).
|
||||
install -d -m 0700 /etc/apt/auth.conf.d
|
||||
printf 'machine %s login %s password %s\n' "${SERVER#*://}" "$ACTOR" "$TOKEN" \
|
||||
> /etc/apt/auth.conf.d/gitea.conf
|
||||
chmod 600 /etc/apt/auth.conf.d/gitea.conf
|
||||
echo "deb [trusted=yes] ${SERVER}/api/packages/${OWNER}/debian stable main" \
|
||||
> /etc/apt/sources.list.d/gitea.list
|
||||
apt-get update
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(vmsig VERSION 0.3.1 LANGUAGES C)
|
||||
project(vmsig VERSION 0.3.2 LANGUAGES C)
|
||||
|
||||
set(CMAKE_C_STANDARD 17)
|
||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||
|
||||
Reference in New Issue
Block a user