Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up runners #37

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build-scaffolding:
runs-on: ubuntu-latest
container:
image: ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.3.0
image: ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.4.0
steps:
- uses: actions/checkout@v3
- name: Build scaffolding
Expand All @@ -34,7 +34,7 @@ jobs:
run-tests:
runs-on: ubuntu-latest
container:
image: ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.3.0
image: ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.4.0
steps:
- uses: actions/checkout@v3
- name: Run tests
Expand All @@ -49,7 +49,7 @@ jobs:
test-scaffolding-go:
runs-on: ubuntu-latest
container:
image: ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.3.0
image: golang:1.20
needs: build-scaffolding
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ RUN apt-get update && apt-get install -y --no-install-recommends cmake curl valg

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72

RUN wget https://go.dev/dl/go1.22.1.linux-amd64.tar.gz \
&& tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz \
&& echo 'export PATH=/usr/local/go/bin:$PATH' >> /root/.bashrc
2 changes: 1 addition & 1 deletion docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ docker run \
-ti --rm \
--volume $PWD:/mounted_workdir \
--workdir /mounted_workdir \
ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.3.0 bash
ghcr.io/nordsecurity/uniffi-bindgen-cpp-test-runner:v0.4.0 bash
Loading