File tree 7 files changed +10
-10
lines changed
ego/cmd/newer-go-ver-test
7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.11)
2
- project (ego VERSION 1.5.1 )
2
+ project (ego VERSION 1.5.2 )
3
3
4
4
if (NOT CMAKE_BUILD_TYPE )
5
5
set (CMAKE_BUILD_TYPE Debug)
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/edgelesssys/ego/build-base:v1.5.1 AS build
1
+ FROM ghcr.io/edgelesssys/ego/build-base:v1.5.2 AS build
2
2
3
3
# don't run `apt-get update` because required packages are cached in build-base for reproducibility
4
4
RUN apt-get install -y --no-install-recommends \
@@ -12,7 +12,7 @@ RUN apt-get install -y --no-install-recommends \
12
12
wget
13
13
14
14
ARG erttag=v0.4.3
15
- ARG egotag=v1.5.1
15
+ ARG egotag=v1.5.2
16
16
RUN wget -qO- https://go.dev/dl/go1.21.8.linux-amd64.tar.gz | tar -C /usr/local -xz \
17
17
&& git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
18
18
&& git clone -b $egotag --depth=1 https://github.com/edgelesssys/ego \
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/edgelesssys/ego/build-base-focal:v1.5.1 AS build
1
+ FROM ghcr.io/edgelesssys/ego/build-base-focal:v1.5.2 AS build
2
2
3
3
# don't run `apt-get update` because required packages are cached in build-base for reproducibility
4
4
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
@@ -12,7 +12,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
12
12
wget
13
13
14
14
ARG erttag=v0.4.3
15
- ARG egotag=v1.5.1
15
+ ARG egotag=v1.5.2
16
16
RUN wget -qO- https://go.dev/dl/go1.21.8.linux-amd64.tar.gz | tar -C /usr/local -xz \
17
17
&& git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
18
18
&& git clone -b $egotag --depth=1 https://github.com/edgelesssys/ego \
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module example.com/newer-go-ver-test
2
2
3
3
go 1.99
4
4
5
- replace example .com/testmod => ./testmod
5
+ replace github .com/edgelesssys/ego/ego/cmd/newer-go-ver-test /testmod => ./testmod
6
6
7
- require example .com/testmod v0.0.0-00010101000000-000000000000
7
+ require github .com/edgelesssys/ego/ego/cmd/newer-go-ver-test /testmod v0.0.0-00010101000000-000000000000
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- import "example .com/testmod"
3
+ import "github .com/edgelesssys/ego/ego/cmd/newer-go-ver-test /testmod"
4
4
5
5
func main () {
6
6
testmod .Hello ()
Original file line number Diff line number Diff line change 1
- module example .com/testmod
1
+ module github .com/edgelesssys/ego/ego/cmd/newer-go-ver-test /testmod
2
2
3
3
go 1.98
You can’t perform that action at this time.
0 commit comments