Skip to content

Commit

Permalink
Merge pull request #135 from jeremyje/master
Browse files Browse the repository at this point in the history
Merge 040wip into master.
  • Loading branch information
jeremyje authored Mar 29, 2019
2 parents 9c943d5 + 03c7db7 commit 6dd23ff
Show file tree
Hide file tree
Showing 8,369 changed files with 342,484 additions and 4,358 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
# below:
.git
.gitignore
#!include:.gitignore
25 changes: 24 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
populations

# local config files
*.json
#*.json

# Discarded code snippets
build.sh
Expand Down Expand Up @@ -67,3 +67,26 @@ msbuild.wrn

# Visual Studio 2015
.vs/

# Goland
.idea/

# Nodejs files placed when building Hugo, ok to allow if we actually start using Nodejs.
package.json
package-lock.json

site/resources/_gen/

# Node Modules
node_modules/

# Compiled Binaries
cmd/backendapi/backendapi
cmd/frontendapi/frontendapi
cmd/mmforc/mmforc
cmd/mmlogicapi/mmlogicapi
examples/backendclient/backendclient
examples/evaluators/golang/simple/simple
examples/functions/golang/manual-simple/manual-simple
test/cmd/clientloadgen/clientloadgen
test/cmd/frontendclient/frontendclient
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release history

## v0.4.0 (alpha)

### Release notes
- Thanks to completion of Issues [#42](issues/42) and [#45](issues/45), there is no longer a need to use the `openmatch-base` image when building components of Open Match. Each stand alone appliation now is self-contained in its `Dockerfile` and `cloudbuild.yaml` files, and builds have been substantially simplified. **Note**: The default `Dockerfile` and `cloudbuild.yaml` now tag their images with the version number, not `dev`, and the YAML files in the `install` directory now reflect this.
- This paves the way for CI/CD in an upcoming version.
- This paves the way for public images in an upcoming version!

## v0.3.0 (alpha)
This update is focused on the Frontend API and Player Records, including more robust code for indexing, deindexing, reading, writing, and expiring player requests from Open Match state storage. All Frontend API function argument have changed, although many only slightly. Please join the [Slack channel](https://open-match.slack.com/) if you need help ([Signup link](https://join.slack.com/t/open-match/shared_invite/enQtNDM1NjcxNTY4MTgzLWQzMzE1MGY5YmYyYWY3ZjE2MjNjZTdmYmQ1ZTQzMmNiNGViYmQyN2M4ZmVkMDY2YzZlOTUwMTYwMzI1Y2I2MjU))!

Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
FROM golang:1.10.3 as builder
WORKDIR /go/src/github.com/GoogleCloudPlatform/open-match
COPY config config
RUN rm -f config/matchmaker_config.json
RUN rm -f config/matchmaker_config.yaml
COPY internal internal
WORKDIR /go/src/github.com/GoogleCloudPlatform/open-match/internal
RUN go get -d -v ...
7 changes: 7 additions & 0 deletions Dockerfile.base-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM golang:1.12
ENV GO111MODULE=on

WORKDIR /go/src/github.com/GoogleCloudPlatform/open-match
COPY . .
RUN go mod download

21 changes: 0 additions & 21 deletions Dockerfile.mmf_php

This file was deleted.

9 changes: 0 additions & 9 deletions Dockerfile.mmf_py3

This file was deleted.

Loading

0 comments on commit 6dd23ff

Please sign in to comment.